Path: blob/master/setup.py
1689 views
import setuptools12with open("readme.md", "r", encoding="utf-8") as f:3long_description = f.read()45setuptools.setup(6name='labml_nn',7version='0.5.1',8author="Varuna Jayasiri, Nipun Wijerathne",9author_email="[email protected], [email protected]",10description="🧑🏫 Implementations/tutorials of deep learning papers with side-by-side notes 📝; including transformers (original, xl, switch, feedback, vit), optimizers (adam, radam, adabelief), gans(dcgan, cyclegan, stylegan2), 🎮 reinforcement learning (ppo, dqn), capsnet, distillation, diffusion, etc. 🧠",11long_description=long_description,12long_description_content_type="text/markdown",13url="https://github.com/labmlai/annotated_deep_learning_paper_implementations",14project_urls={15'Documentation': 'https://nn.labml.ai'16},17packages=setuptools.find_packages(exclude=('labml', 'labml.*',18'labml_samples', 'labml_samples.*',19'labml_helpers', 'labml_helpers.*',20'test',21'test.*')),22install_requires=['labml',23'torch',24'torchtext',25'torchvision',26'einops',27'numpy',28'fairscale'],29classifiers=[30"Programming Language :: Python :: 3",31"License :: OSI Approved :: MIT License",32'Intended Audience :: Developers',33'Intended Audience :: Science/Research',34'Topic :: Scientific/Engineering',35'Topic :: Scientific/Engineering :: Mathematics',36'Topic :: Scientific/Engineering :: Artificial Intelligence',37'Topic :: Software Development',38'Topic :: Software Development :: Libraries',39'Topic :: Software Development :: Libraries :: Python Modules',40],41keywords='machine learning',42)434445