-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 749 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (36 loc) · 749 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
31
32
33
34
35
36
37
38
39
40
41
[project]
name = "ecg-visualization"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Key5n", email = "k.nogami.472@stn.nitech.ac.jp" }
]
requires-python = ">=3.13"
dependencies = [
"biosppy>=2.2.4",
"networkx>=3.5",
"numpy>=2.3.3",
"omegaconf>=2.3.1",
"optuna>=4.6.0",
"pandas>=2.3.3",
"peakutils>=1.3.5",
"pymysql>=1.1.2",
"pypdf>=6.3.0",
"python-dotenv>=1.2.1",
"scikit-learn>=1.5.2",
"seaborn>=0.13.2",
"tqdm>=4.67.1",
"wfdb>=4.3.0",
]
[tool.uv]
cache-dir = ".uv_cache"
[dependency-groups]
dev = [
"pytest>=9.1.1",
"ruff>=0.15.20",
]
[tool.pytest.ini_options]
pythonpath = ["."]
[tool.ruff.lint]
extend-select = ["I"]