| 12345678910111213141516171819202122232425262728293031323334 |
- 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'
- ]
- )
|