forked from Germey/ProxyPool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 872 Bytes
/
setup.py
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
32
33
34
from setuptools import setup
setup(
name='proxy-pool',
version='1.0.0',
description='High performance proxy pool',
long_description='A proxy pool project modified from WiseDoge/ProxyPool',
author=['Germey', 'WiseDoge'],
author_email='[email protected]',
url='https://github.com/Germey/ProxyPool',
packages=[
'proxy-pool'
],
py_modules=['run'],
include_package_data=True,
platforms='any',
install_requires=[
'aiohttp',
'requests',
'flask',
'redis',
'pyquery'
],
entry_points={
'console_scripts': ['proxy_pool_run=run:cli']
},
license='apache 2.0',
zip_safe=False,
classifiers=[
'Environment :: Console',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython'
]
)