-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (41 loc) · 950 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "caligraph"
version = "2.2.0"
description = ""
authors = ["Nicolas Heist <nico@informatik.uni-mannheim.de>"]
[tool.poetry.dependencies]
python = "^3.9"
inflection = "*"
pandas = "*"
wikitextparser = "*"
lxml = "*"
spacy = "~3.4"
spacy-lookups-data = "*"
tables = "*"
pyyaml = "*"
networkx = "*"
nltk = "*"
pynif = "*"
tqdm = "*"
polyleven = "*"
unidecode = "*"
transformers = "*"
torch = "*"
poethepoet = "*"
sentence-transformers = "^2.2.2"
ConfigArgParse = "^1.5.3"
matplotlib = "^3.6.1"
fastbm25 = "^0.0.2"
hnswlib = "^0.6.2"
neleval = "^3.1.1"
[tool.poetry.dev-dependencies]
pytest = "*"
tensorboard = "*"
jupyter = "*"
[tool.poe.tasks]
install-ltt = "python3 -m pip install light-the-torch"
run-ltt = "python3 -m light_the_torch install --upgrade torch torchaudio torchvision"
autoinstall-torch-cuda = ["install-ltt", "run-ltt"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"