setup.py 885 B

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