-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
44 lines (39 loc) · 1.1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
from os import path
VERSION = '0.1.2'
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='program-synthesis',
version=VERSION,
description='NEAR Program Synthesis: models, tools, and datasets for program synthesis tasks',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(exclude=["*_test.py", "test_*.py"]),
author='NEAR Inc and Contributors',
author_email='[email protected]',
install_requires=[
'boto3',
'cached-property',
'ipython',
'gym',
'numpy',
'torchfold',
'ply',
'pylru',
'pyparsing',
'pytest',
'pytest-timeout',
'pytest-xdist',
'python-Levenshtein',
'prompt_toolkit',
'sortedcontainers',
'tensorflow',
'tqdm',
],
project_urls={
'Source': "https://github.com/nearai/program_synthesis",
},
python_requires='>=3.5',
)