setup.py 872 B

12345678910111213141516171819202122232425262728293031323334
  1. from setuptools import setup
  2. setup(
  3. name='proxy-pool',
  4. version='1.0.0',
  5. description='High performance proxy pool',
  6. long_description='A proxy pool project modified from WiseDoge/ProxyPool',
  7. author=['Germey', 'WiseDoge'],
  8. author_email='[email protected]',
  9. url='https://github.com/Germey/ProxyPool',
  10. packages=[
  11. 'proxy-pool'
  12. ],
  13. py_modules=['run'],
  14. include_package_data=True,
  15. platforms='any',
  16. install_requires=[
  17. 'aiohttp',
  18. 'requests',
  19. 'flask',
  20. 'redis',
  21. 'pyquery'
  22. ],
  23. entry_points={
  24. 'console_scripts': ['proxy_pool_run=run:cli']
  25. },
  26. license='apache 2.0',
  27. zip_safe=False,
  28. classifiers=[
  29. 'Environment :: Console',
  30. 'Programming Language :: Python :: 3.5',
  31. 'Programming Language :: Python :: Implementation :: CPython'
  32. ]
  33. )