-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 1.28 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pcg-springer-features"
dynamic = ["version"]
description = "Tools for Computation of Springer's Features from Phonocardiogram (PCG)."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
authors = [
{ name = "DeepPSP", email = "wenh06@gmail.com" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"easydict",
"numpy",
"PyWavelets",
"scipy",
"torch-ecg",
"PeakUtils",
]
[project.optional-dependencies]
dev = [
"pre-commit",
"pytest",
"pytest-cov",
"pytest-xdist",
]
test = [
"pre-commit",
"pytest",
"pytest-cov",
"pytest-xdist",
]
[project.urls]
Homepage = "https://github.com/DeepPSP/pcg_springer_features"
[tool.hatch.version]
path = "pcg_springer_features/version.py"
[tool.hatch.build.targets.sdist]
include = [
"/pcg_springer_features",
]