forked from HazyResearch/bootleg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
75 lines (69 loc) · 1.76 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
from distutils.util import convert_path
from setuptools import find_packages, setup
main_ns = {}
ver_path = convert_path("bootleg/_version.py")
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
NAME = "bootleg"
DESCRIPTION = "Bootleg NED System"
URL = "https://github.com/HazyResearch/bootleg"
EMAIL = "[email protected]"
AUTHOR = "Laurel Orr"
VERSION = main_ns["__version__"]
REQUIRED = [
"argh>=0.26.2, <1.0.0",
"click>=7.1.2, <7.5.0",
"emmental==0.1.0",
"faiss-cpu>=1.6.8, <1.7.1",
"jsonlines>=2.0.0, <2.4.0",
"marisa_trie>=0.7.7, <0.8",
"mock>=4.0.3, <4.5.0",
"nltk>=3.6.4, <4.0.0",
"notebook>=6.4.1, <7.0.0",
"numba>=0.50.0, <0.55.0",
"numpy>=1.19.0, <1.21.0",
"pandas>=1.2.3, <1.5.0",
"progressbar>=2.5.0, <2.8.0",
"pydantic>=1.7.1, <1.8.0",
"pyyaml<6.0,>=5.1",
"rich>=10.0.0, <10.20.0",
"scikit_learn>=0.24.0, <0.27.0",
"scipy>=1.6.1, <1.9.0",
"sentencepiece==0.1.*",
"spacy==3.0.1",
"stanza==1.3.0",
"spacy-stanza==1.0.1",
"tagme>=0.1.3, <0.2.0",
"torch>=1.7.0, <1.10.0",
"tqdm>=4.27",
"transformers>=4.0.0, <5.0.0",
"ujson>=4.1.0, <4.2.0",
"wandb>=0.10.0, <0.13.0",
]
EXTRAS = {
"dev": [
"black>=21.7b0",
"docformatter==1.4",
"flake8>=3.9.2",
"isort>=5.9.3",
"nbsphinx==0.8.1",
"pep8_naming==0.12.1",
"pre-commit>=2.14.0",
"pytest==6.2.2",
"python-dotenv==0.15.0",
"recommonmark==0.7.1",
"sphinx-rtd-theme==0.5.1",
],
"embs-gpu": [
"faiss-gpu>=1.7.0, <1.7.2",
],
}
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
packages=find_packages(),
url=URL,
install_requires=REQUIRED,
extras_require=EXTRAS,
)