generated from osushinekotan/poetry-docker-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
65 lines (57 loc) · 1.23 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
53
54
55
56
57
58
59
60
61
62
63
64
65
[tool.poetry]
name = "humob-challenge-2023"
version = "0.1.0"
description = ""
authors = ["osushinekotan"]
[tool.poetry.dependencies]
python = "^3.11"
pandas = "^2.0.3"
pyyaml = "^6.0.1"
pyarrow = "^12.0.1"
colorlog = "^6.7.0"
plotly = "^5.15.0"
nbformat = "^5.9.2"
dash = "^2.11.1"
ipykernel = "^6.25.0"
jupyter = "^1.0.0"
jupyterlab-code-formatter = "^2.2.1"
jupyterlab = "^4.0.3"
jupyterlab-tabnine = "^0.0.24"
transformers = "^4.31.0"
setuptools = "^68.0.0"
joblib = "^1.3.1"
scikit-learn = "^1.3.0"
wandb = "^0.15.8"
geobleu = {path = "geobleu", develop = true}
torch = ">=2.0.0, !=2.0.1"
pytorch-pfn-extras = "^0.7.1"
polars = "^0.18.13"
seaborn = "^0.12.2"
pandarallel = "^1.6.5"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
mypy = "^1.4.1"
ruff = "^0.0.278"
ipykernel = "^6.24.0"
pytest = "^7.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py311"
unfixable = ["F401", "F841"]
ignore = ["E501"]
line-length = 120
exclude = ["geobleu"]
[tool.black]
line-length = 120
[tool.mypy]
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
ignore_errors = true
[[tool.mypy.overrides]]
module = [
"tests.*",
]
ignore_errors = true