Skip to content

Commit 7dcc114

Browse files
committed
pip package
1 parent ce0eadc commit 7dcc114

2 files changed

Lines changed: 40 additions & 1 deletion

File tree

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
labml>=0.4.71
1+
labml>=0.4.74
22
torch
33
numpy
44
labml-helpers>=0.4.70

setup.py

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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

Comments
 (0)