generated from Paul-B98/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
83 lines (75 loc) · 2.11 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
78
79
80
81
82
83
[tool.poetry]
name = "open_icu"
description = "This is a project to unify and analyse data from different ICU data sources."
version = "1.0.0"
license = "MIT"
authors = ["ADIH MS"]
readme = "README.md"
homepage = "https://github.com/aidh-ms/OpenICU"
repository = "https://github.com/aidh-ms/OpenICU"
documentation = "https://github.com/aidh-ms/OpenICU"
keywords = ["Data", "ICU", "Healthcare", "Analysis"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.urls]
Changelog = "https://github.com/aidh-ms/OpenICU/releases"
Bugtracker = "https://github.com/aidh-ms/OpenICU/issues"
[tool.poetry.dependencies]
python = "^3.13"
sqlalchemy = "^2.0.38"
psycopg = {extras = ["binary"], version = "^3.2.5"}
pandera = {extras = ["strategies"], version = "^0.22.0"}
pandas = "^2.2.3"
pandas-stubs = "^2.2.3.241126"
pydantic = "^2.10.6"
pyyaml = "^6.0.2"
types-pyyaml = "^6.0.12.20241230"
pyarrow = "^19.0.1"
dependency-injector = "^4.46.0"
[tool.poetry.group.aki.dependencies]
pyaki = "^1.0.7"
[tool.poetry.group.dev.dependencies]
mypy = "^1.15.0"
pytest = "^8.3.5"
coverage = "^7.6.11"
pytest-cov = "^6.0.0"
ruff = "^0.9.9"
pytest-asyncio = "^0.25.3"
pytest-recording = "^0.13.1"
pytest-random-order = "^1.1.1"
jupyterlab = "^4.3.5"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocs-material = "^9.6.7"
pymdown-extensions = "^10.14.3"
mkdocstrings-python = "^1.16.2"
mkdocs-macros-plugin = "^1.3.7"
mkdocs-gen-files = "^0.5.0"
mkdocs-literate-nav = "^0.6.1"
mkdocs-section-index = "^0.3.9"
mkdocs-jupyter = "^0.25.1"
jupyter = "^1.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
python_version = "3.13"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
strict_optional = true
[tool.pytest.ini_options]
python_files = ["test_*.py", "*_test.py"]
filterwarnings = ["ignore::DeprecationWarning"]
asyncio_mode = "auto"
addopts = [
"--cov",
"--cov-branch",
"--cov=src",
"--cov-report=xml",
"--import-mode=importlib",
"--random-order",
]