-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (51 loc) · 1.31 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
[tool.poetry]
name = "itpr"
version = "0.1.0"
description = "ITPR"
authors = ["Gianmarco Aversano <[email protected]>"]
license = "LICENSE"
readme = "README.md"
packages = [{ include = "itpr", from = "src" }]
include = ["*.py", "src/**/*.json", "src/**/*.toml"]
exclude = ["tests/*"]
[build-system]
requires = ["poetry-core>=1.0.0", "cython"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
# Utils
pyrootutils = "*"
loguru = "*"
tqdm = "^4.66.1"
aenum = "^3.1.15"
# Visualization
matplotlib = "^3.8.1"
seaborn = "^0.13.0"
# Data Science
scikit-learn = "^1.3.2"
pandas = "^2.1.2"
numpy = "^1.26.1"
[tool.poetry.dev-dependencies]
virtualenv = { version = "*" }
black = { extras = ["jupyter"], version = "*" }
flake8 = { version = "*" }
ipython = { version = "*" }
isort = { version = "*" }
mypy = { version = "*" }
pylint = { version = "*" }
pytest = { version = "*" }
pytest-cov = { version = "*" }
pytest-mock = { version = "*" }
pytest-pylint = { version = "*" }
pytest-mypy = { version = "*" }
pytest-testmon = { version = "*" }
pytest-xdist = { version = "*" }
nbmake = { version = "*" }
tox = { version = "*" }
tox-poetry = { version = "*" }
[[tool.poetry.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cpu"
priority = "explicit"
[tool.black]
line-length = 110