1234567891011121314151617181920212223242526272829 |
- from setuptools import setup, find_packages
- setup(
- name='webio',
- version='1.0.0',
- description='Spider utils lib',
- url='',
- author='WangWeimin',
- author_email='wangweimin@buaa.edu.com',
- license='MIT',
- packages=find_packages(),
- package_data={
- # data files need to be listed both here (which determines what gets
- # installed) and in MANIFEST.in (which determines what gets included
- # in the sdist tarball)
- "wsrepl": [
- "html",
- ],
- },
- classifiers=[
- "Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.5",
- "Programming Language :: Python :: 3.6",
- "Programming Language :: Python :: 3.7",
- ],
- install_requires=[
- 'tornado>=4.2.0',
- ]
- )
|