You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

setup.py 616 B

123456789101112131415161718192021222324
  1. #!/usr/bin/env python
  2. # coding=utf-8
  3. from setuptools import setup, find_packages
  4. with open('README.md', encoding='utf-8') as f:
  5. readme = f.read()
  6. with open('LICENSE', encoding='utf-8') as f:
  7. license = f.read()
  8. with open('requirements.txt', encoding='utf-8') as f:
  9. reqs = f.read()
  10. setup(
  11. name='FastNLP',
  12. version='0.1.1',
  13. description='fastNLP: Deep Learning Toolkit for NLP, developed by Fudan FastNLP Team',
  14. long_description=readme,
  15. license=license,
  16. author='FudanNLP',
  17. python_requires='>=3.5',
  18. packages=find_packages(),
  19. install_requires=reqs.strip().split('\n'),
  20. )