|
| 1 | +import setuptools |
| 2 | + |
| 3 | +with open("readme.md", "r") as f: |
| 4 | + long_description = f.read() |
| 5 | + |
| 6 | +setuptools.setup( |
| 7 | + name='labml_python_autocomplete', |
| 8 | + version='0.0.1', |
| 9 | + author="Varuna Jayasiri", |
| 10 | + author_email="vpjayasiri@gmail.com", |
| 11 | + description="A simple model that learns to predict Python source code", |
| 12 | + long_description=long_description, |
| 13 | + long_description_content_type="text/markdown", |
| 14 | + url="https://github.com/lab-ml/python_autocomplete", |
| 15 | + project_urls={ |
| 16 | + 'Documentation': 'https://lab-ml.com/' |
| 17 | + }, |
| 18 | + packages=setuptools.find_packages(exclude=('test', |
| 19 | + 'test.*')), |
| 20 | + install_requires=['labml>=0.4.74', |
| 21 | + 'labml_helpers>=0.4.70', |
| 22 | + 'labml_nn>=0.4.70' |
| 23 | + 'torch', |
| 24 | + 'einops', |
| 25 | + 'numpy'], |
| 26 | + classifiers=[ |
| 27 | + "Programming Language :: Python :: 3", |
| 28 | + "License :: OSI Approved :: MIT License", |
| 29 | + 'Intended Audience :: Developers', |
| 30 | + 'Intended Audience :: Science/Research', |
| 31 | + 'Topic :: Scientific/Engineering', |
| 32 | + 'Topic :: Scientific/Engineering :: Mathematics', |
| 33 | + 'Topic :: Scientific/Engineering :: Artificial Intelligence', |
| 34 | + 'Topic :: Software Development', |
| 35 | + 'Topic :: Software Development :: Libraries', |
| 36 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
| 37 | + ], |
| 38 | + keywords='machine learning', |
| 39 | +) |
0 commit comments