-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (37 loc) · 1010 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "exampleproject"
version = "0.0.1"
description = "Example for reproducing an error."
authors = ["pascal456"]
readme = "README.md"
repository = "https://github.com/pascal456/exampleproject"
packages = [{ include = "exampleproject" }]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/pascal456/exampleproject/issues"
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
autogluon = "^1.0.0"
fhdw-modelling = "^7.2.0"
mlflow = "2.10.2"
plotly = "^5.20.0"
redis = "^5.0.3"
torch = ">=2.0.0, !=2.0.1, !=2.1.0" # excluded versions miss cuda libs (maybe a bug...)
[tool.poetry.group.dev.dependencies]
bandit = "^1.7.8"
black = "^24.3.0"
flake8 = "^7.0.0"
ipykernel = "^6.29.0"
isort = "^5.13.2"
jupyter = "^1.0.0"
pydocstyle = "^6.3.0"
pylint = "^3.1.0"
[tool.bandit.assert_used]
skips = ['*/test_*.py']
[tool.isort]
profile = "black"
force_single_line = true
[tool.pydocstyle]
convention = "google"