-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
47 lines (44 loc) · 1.13 KB
/
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
46
47
[tool.poetry]
name = "kogito"
version = "0.6.3"
description = "A Python NLP Commonsense Knowledge Inference Toolkit"
authors = ["Mete Ismayil <[email protected]>", "Antoine Bosselut <[email protected]>"]
license = "Apache License 2.0"
readme = "README.md"
homepage = "https://github.com/epfl-nlp/kogito"
repository = "https://github.com/epfl-nlp/kogito"
documentation = "https://github.com/epfl-nlp/kogito"
keywords = [
"natural language processing",
"nlp",
"natural language understanding",
"commonsense reasoning",
"commonsense inference",
"knowledge inference"
]
classifiers = []
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
sacrebleu = "^2.0.0"
rouge-score = "^0.0.4"
pytorch-lightning = "~1.5.10"
pandas = "^1.3.5"
spacy = "^3.2.3"
inflect = "^5.3.0"
transformers = "^4.15.0"
wandb = "^0.12.9"
torch = "^1.10.1"
openai = "^0.18.1"
bert-score = "^0.3.11"
sentencepiece = "^0.1.97"
grpcio = "~1.51.1"
[tool.poetry.dev-dependencies]
pytest = "*"
flake8 = "*"
black = "~22.12.0"
mypy = "*"
sphinx = "*"
insegel = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"