-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 687 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup, find_namespace_packages
setup(
name="proxy-finder",
version="1.2.0",
package_dir={"": "src"},
packages=find_namespace_packages(where="src"),
install_requires=[
"requests>=2.25.1",
"beautifulsoup4>=4.9.3",
"rich>=10.0.0",
"selenium>=4.0.0",
"urllib3>=1.26.0"
],
entry_points={
'console_scripts': [
'proxy-finder=proxy_finder.cli:main',
],
},
author="Abbaloch",
description="A robust proxy finding and management system",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
python_requires='>=3.8',
)