-
Notifications
You must be signed in to change notification settings - Fork 118
/
setup.py
34 lines (33 loc) · 893 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='RAT-SQL',
version='1.0',
description='A relation-aware semantic parsing model from English to SQL',
packages=find_packages(exclude=["*_test.py", "test_*.py"]),
package_data={
'': ['*.asdl'],
},
install_requires=[
'asdl~=0.1.5',
'astor~=0.7.1',
'attrs~=18.2.0',
'babel~=2.7.0',
'bpemb~=0.2.11',
'cython~=0.29.1',
# 'entmax~=1.0',
'jsonnet~=0.14.0',
'networkx~=2.2',
'nltk~=3.4',
'numpy~=1.16',
'pyrsistent~=0.14.9',
'pytest~=5.3.2',
'records~=0.5.3',
'stanford-corenlp~=3.9.2',
'tabulate~=0.8.6',
'torch~=1.3.1',
'torchtext~=0.3.1',
'tqdm~=4.36.1',
'transformers~=2.3.0',
],
entry_points={"console_scripts": ["ratsql=run:main"]},
)