-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 905 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 = "MTQE"
version = "0.1.0"
description = ""
authors = ["Applied Research Centre, The Alan Turing Institute <[email protected]>"]
readme = "README.md"
packages = [{include = "mtqe", from="src"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.11.0"
ipywidgets = "^8.1.1"
jupyter = "^1.0.0"
matplotlib = "^3.8.0"
scikit-learn = "^1.4.0"
openai = "^1.14.0"
huggingface-hub = "^0.21.3"
unbabel-comet = "^2.2.1"
wandb = "^0.16.4"
pyyaml = "^6.0.1"
GitPython = "^3.1.43"
seaborn = "^0.13.2"
[tool.poetry.dev-dependencies]
pytest = "^7.4.2"
pytest-mock = "^3.11.1"
black = "^23.9.1"
flake8 = "^6.1.0"
isort = "^5.12.0"
pre-commit = "^3.4.0"
ipykernel = "^6.25.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
include = '\.pyi?$'
[tool.flake8]
max-line-length = 120
extend-ignore = ["E203"]
[tool.isort]
profile = "black"