-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
51 lines (49 loc) · 1.35 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
45
46
47
48
49
50
51
import sys
from setuptools import setup, find_packages
setup(
name="tensor2struct",
version="0.3",
author='bailin',
author_email='[email protected]',
description="neural semantic parsers",
packages=find_packages(
exclude=["experiments", "experiments.*", "*_test.py", "test_*.py", "tests"]
),
include_package_data=True,
package_data={"": ["*.asdl", "*.json"]},
install_requires=[
"astor~=0.7.1",
"asdl~=0.1.5",
"attrs~=18.2.0",
"babel~=2.7.0",
"cython~=0.29.1",
"dacite~=1.2.0",
"editdistance~=0.5.3",
"einops~=0.2.0",
"edit_distance~=1.0.4",
"higher",
"jsonnet~=0.11.2",
"nltk~=3.4",
"networkx~=2.2",
"numpy>=1.15",
"records~=0.5.3",
"sacrebleu~=1.5.0",
"sentencepiece~=0.1.95",
"spacy==2.3.2",
"scipy~=1.5.2",
"stanza~=1.0.0",
"spacy-stanza==0.2.0",
"tabulate~=0.8.6",
"timeout-decorator~=0.4.1",
"torchtext~=0.3.1",
"tqdm>=4.36.1",
"torch~=1.4.0",
"transformers>=2.11.0",
"wandb>=0.9.4",
"torchtext~=0.3.1",
"pytest~=5.4.1",
"pyrsistent~=0.14.9",
"unidecode~=1.1.1",
],
entry_points={"console_scripts": ["tensor2struct=tensor2struct.commands.run:main"]},
)