-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (66 loc) · 1.72 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (66 loc) · 1.72 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["setuptools>=69,<82", "wheel>=0.43,<1"]
build-backend = "setuptools.build_meta"
[project]
name = "zpe-bio"
version = "0.2.1"
description = "Deterministic ECG codec with Python + Rust core; staged proof on 4 standard clinical corpora (MIT-BIH, NSTDB, EDB, PTB-XL)"
requires-python = ">=3.10"
readme = "README.md"
license = "LicenseRef-Zer0pa-SAL-7.0"
authors = [
{name = "Zer0pa (Pty) Ltd", email = "architects@zer0pa.ai"},
]
keywords = [
"ecg compression",
"ECG",
"deterministic codec",
"medical waveform",
"PhysioNet",
]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy>=1.24,<2.0",
]
[project.urls]
Homepage = "https://github.com/Zer0pa/ZPE-Bio"
Documentation = "https://github.com/Zer0pa/ZPE-Bio#readme"
Repository = "https://github.com/Zer0pa/ZPE-Bio"
Issues = "https://github.com/Zer0pa/ZPE-Bio/issues"
Changelog = "https://github.com/Zer0pa/ZPE-Bio/blob/main/CHANGELOG.md"
[project.optional-dependencies]
validation = [
"matplotlib>=3.7",
"neurokit2>=0.2.12",
"wfdb>=4.1",
]
bioeeg = [
"mne>=1.8",
"pyedflib>=0.1.42",
]
dev = [
"build>=1.2",
"pytest>=8.0",
"ruff>=0.6",
]
[project.scripts]
zpe-bio = "zpe_bio.cli:main"
[tool.setuptools]
package-dir = {"" = "python"}
[tool.setuptools.packages.find]
where = ["python"]
include = ["zpe_bio*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["python"]
[tool.ruff]
target-version = "py310"
line-length = 100