setup.py 796 B

1234567891011121314151617181920212223242526272829
  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. package_data={
  12. # data files need to be listed both here (which determines what gets
  13. # installed) and in MANIFEST.in (which determines what gets included
  14. # in the sdist tarball)
  15. "wsrepl": [
  16. "html",
  17. ],
  18. },
  19. classifiers=[
  20. "Programming Language :: Python :: 3",
  21. "Programming Language :: Python :: 3.5",
  22. "Programming Language :: Python :: 3.6",
  23. "Programming Language :: Python :: 3.7",
  24. ],
  25. install_requires=[
  26. 'tornado>=4.2.0',
  27. ]
  28. )