-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.18 KB
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
[project]
name = "virus-sim-dashboard"
version = "0.2.0"
description = "CUH Winter Virus Modelling Dashboard"
readme = "README.md"
authors = [
{ name = "Yin-Chi Chan", email = "ycc39@cam.ac.uk" }
]
requires-python = ">=3.13,<3.14"
dependencies = [
"dash-compose>=2023.3.12",
"dash-iconify>=0.1.2",
"dash-mantine-components>=2.4.1",
"dash[diskcache]>=3.4.0,<4",
"greenlet>=3.3.1",
"humanize>=4.15.0",
"pandas-stubs>=2.3.3.260113",
"pandas[excel, feather]>=3.0.0",
"plotly>=6.5.2",
"pydantic>=2.12.5",
"reliability>=0.9.0",
"salabim>=26.0.0",
"scipy>=1.17.0",
]
[project.scripts]
dashboard = "virus_sim_dashboard:main"
[build-system]
requires = ["uv_build>=0.9.2,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"ipykernel>=7.1.0",
"isort>=7.0.0",
"mypy>=1.19.1",
"nbformat>=5.10.4",
"ruff>=0.14.13",
]
[tool.isort]
filter_files=true
line_length=100
# Match ruff --format settings
multi_line_output = 3
include_trailing_comma = true
[tool.mypy]
disable_error_code=[
"import-untyped", # Ignore uptyped imports
"attr-defined" # Disable attribute checks (needed for dynamic attributes as in dash-compose)
]