setup.py 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. from pkg_resources import parse_requirements
  2. from setuptools import setup
  3. with open('requirements.txt') as requirements_file:
  4. install_requires = [str(requirement) for requirement in parse_requirements(requirements_file)]
  5. setup(
  6. name='tesseract',
  7. version='0.7',
  8. description='',
  9. long_description='',
  10. author='Learning@home authors',
  11. author_email='mryabinin@hse.ru',
  12. packages=['tesseract'],
  13. license='MIT',
  14. install_requires=install_requires,
  15. classifiers=[
  16. 'Development Status :: 4 - Beta',
  17. 'Intended Audience :: Developers',
  18. 'Intended Audience :: Science/Research',
  19. 'License :: OSI Approved :: MIT License',
  20. 'Programming Language :: Python :: 3',
  21. 'Programming Language :: Python :: 3.8',
  22. 'Topic :: Scientific/Engineering',
  23. 'Topic :: Scientific/Engineering :: Mathematics',
  24. 'Topic :: Scientific/Engineering :: Artificial Intelligence',
  25. 'Topic :: Software Development',
  26. 'Topic :: Software Development :: Libraries',
  27. 'Topic :: Software Development :: Libraries :: Python Modules',
  28. ],
  29. # What does your project relate to?
  30. keywords='pytorch, deep learning, machine learning, gpu, distributed computing',
  31. )