-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 858 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (26 loc) · 858 Bytes
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
[project]
name = "aecg"
version = "0.1.3"
description = "Python parser and viewer for Annotated ECG HL7 files"
readme = "README.md"
requires-python = ">=3.12"
authors = [{ name = "Ghiles Meddour", email = "ghiles.meddour.b@gmail.com" }]
dependencies = [
"lxml>=5.3.0",
"pandas>=2.2.3",
"plotly>=5.24.1",
"pydantic-xml>=2.19.0",
"pydantic>=2.9.2",
"python-benedict[xml]>=0.34.0",
]
[project.optional-dependencies]
dev = ["coverage>=7.13.3", "devtools>=0.12.2", "pytest>=9.0.2", "ruff>=0.15.0"]
[project.urls]
Repository = "https://github.com/ghilesmeddour/aecg"
Documentation = "https://github.com/ghilesmeddour/aecg"
Changelog = "https://github.com/ghilesmeddour/aecg/blob/main/CHANGELOG.md"
Releases = "https://github.com/ghilesmeddour/aecg/releases"
[tool.setuptools]
packages = ["aecg"]
[tool.uv]
required-version = ">=0.8.20"