123456789101112131415161718192021222324252627282930313233 |
- from pkg_resources import parse_requirements
- from setuptools import setup
- with open('requirements.txt') as requirements_file:
- install_requires = [str(requirement) for requirement in parse_requirements(requirements_file)]
- setup(
- name='tesseract',
- version='0.7',
- description='',
- long_description='',
- author='Learning@home authors',
- author_email='mryabinin@hse.ru',
- packages=['tesseract'],
- license='MIT',
- install_requires=install_requires,
- classifiers=[
- 'Development Status :: 4 - Beta',
- 'Intended Audience :: Developers',
- 'Intended Audience :: Science/Research',
- 'License :: OSI Approved :: MIT License',
- 'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.8',
- 'Topic :: Scientific/Engineering',
- 'Topic :: Scientific/Engineering :: Mathematics',
- 'Topic :: Scientific/Engineering :: Artificial Intelligence',
- 'Topic :: Software Development',
- 'Topic :: Software Development :: Libraries',
- 'Topic :: Software Development :: Libraries :: Python Modules',
- ],
- # What does your project relate to?
- keywords='pytorch, deep learning, machine learning, gpu, distributed computing',
- )
|