-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 785 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 785 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
26
27
28
29
30
31
from setuptools import setup
setup(
name='proxypool',
version='V2.0.0',
packages=['proxypool', 'proxypool.schedule'],
url='https://github.com/WiseDoge/ProxyPool',
license='apache 2.0',
author='wisedoge',
author_email='wisedoge@outlook.com',
description='A Cross-platform proxy pool.',
py_modules=['run'],
include_package_data=True,
platforms='any',
install_requires=[
'aiohttp',
'requests',
'bs4',
'flask',
'redis',
'lxml'
],
entry_points={
'console_scripts': ['proxypool_run=run:cli']
},
classifiers=[
'Environment :: Console',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython'
]
)