setup.py 564 B

12345678910111213141516171819202122
  1. from setuptools import setup, find_packages
  2. setup(
  3. name='webio',
  4. version='1.0.0',
  5. description='Spider utils lib',
  6. url='',
  7. author='WangWeimin',
  8. author_email='wangweimin@buaa.edu.com',
  9. license='MIT',
  10. packages=find_packages(),
  11. include_package_data=True,
  12. classifiers=[
  13. "Programming Language :: Python :: 3",
  14. "Programming Language :: Python :: 3.5",
  15. "Programming Language :: Python :: 3.6",
  16. "Programming Language :: Python :: 3.7",
  17. ],
  18. install_requires=[
  19. 'tornado>=4.2.0',
  20. ]
  21. )