-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
77 lines (70 loc) · 1.47 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
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "noshow"
version = "1.5.2"
authors = [
{ name="Ruben Peters", email="[email protected]" },
{ name="Eric Wolters", email="[email protected]" }
]
description = "No-show prediction model to reduce the amount of no-shows at the clinics"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies =[
"pandas~=2.0",
"matplotlib~=3.7",
"numpy>=1.24",
"scikit-learn>=1.3,<1.7",
"pyarrow>=14.0",
"fastapi~=0.109",
"dvc~=3.33",
"dvclive~=3.41",
"sqlalchemy~=2.0",
"python-dotenv~=1.0",
"pymssql~=2.2",
"streamlit>=1.30",
"tomli~=2.0",
"relplot>=1.0",
"pygit2<1.17", # Version 1.18 has no available wheels yet
]
[dependency-groups]
dev = [
"ipykernel>=6.29.2",
"pytest>=8.0.1",
"nbstripout>=0.7.1",
"uvicorn>=0.28.0",
"pytest-asyncio>=0.23.6",
"pytest-cov>=5.0.0",
"alembic>=1.13.3",
"rsconnect-python>=1.24.0",
]
lint = [
"ruff>=0.7.1",
]
[tool.uv]
default-groups = ["dev", "lint"]
[tool.isort]
profile = "black"
[tool.ruff]
src = ["src"]
[tool.ruff.lint]
select = [
"B",
"E",
"F",
"W",
"C90",
"I",
]
[tool.ruff.lint.flake8-bugbear]
extend-immutable-calls = [
"Depends",
"fastapi.Depends",
"fastapi.params.Depends",
"Security",
]