-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.07 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
[tool.poetry]
name = "shc-dashboard"
version = "0.1.0"
description = ""
authors = ["jonas.schrage <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
pandas = "^2.2.2"
matplotlib = "^3.9.0"
plotly = "^5.22.0"
sqlalchemy = "^2.0.30"
dash = {extras = ["diskcache"], version = "^2.17.1"}
dash-bootstrap-components = "^1.6.0"
pathlib = "^1.0.1"
urllib3 = "^1.9.0"
dash-mantine-components = "0.13.0a2"
dash-iconify = "^0.1.2"
pyyaml = "^6.0.1"
pymem = "^1.14.0"
psutil = "^6.1.0"
openpyxl = "^3.1.5"
[tool.poetry.group.dev.dependencies]
pytest-repeat = "^0.9.3"
pytest = "^8.2.2"
black = "^24.4.2"
mypy = "^1.10.0"
isort = "^5.13.2"
ipykernel = "^6.29.4"
flake8 = "^7.0.0"
pre-commit = "^3.7.1"
pytest-cov = "^5.0.0"
dash = {extras = ["testing"], version = "^2.17.1"}
pydocstyle = "^6.3.0"
pytest-mock = "^3.14.0"
types-pyyaml = "^6.0.12.20240311"
flake8-bugbear = "^24.12.12"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 119
[tool.isort]
profile="black"