-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.09 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
48
49
50
51
52
[tool.poetry]
name = "deepa2"
version = "0.1.16"
description = "Cast NLP data as multiangular DeepA2 datasets and integrate these in training pipeline"
authors = ["Gregor Betz <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/debatelab/deepa2"
[tool.poetry.scripts]
deepa2 = "deepa2.main:app"
[tool.poetry.dependencies]
python = ">=3.7.1,<3.11"
pandas = "1.3.5"
numpy = "1.21.5"
typer = {extras = ["all"], version = "^0.4.0"}
datasets = "^2.8.0"
Jinja2 = "^3.0.3"
pyarrow = "^6.0.1"
requests = "^2.27.1"
networkx = "^2.6.3"
ttp = "^0.8.4"
sacrebleu = "^2.1.0"
editdistance = "^0.6.0"
nltk = "^3.7"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
matplotlib = "^3.5.1"
pylint = "^2.12.2"
black = "^22.1.0"
flake8 = "^4.0.1"
ipykernel = "^6.7.0"
mypy = "^0.931"
types-requests = "^2.27.8"
pandas-stubs = "^1.2.0"
types-PyYAML = "^6.0.4"
ipython = "7.31.1"
coverage = "^6.4.1"
[tool.pylint.messages_control]
max-line-length = 100
disable = [
"fixme",
"duplicate-code",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"