-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (61 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
70 lines (61 loc) · 1.66 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fasteit"
version = "0.1.0.dev0"
description = "EIT data parsing, preprocessing, and clinical feature extraction for Dräger PulmoVista"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
keywords = ["EIT", "electrical impedance tomography", "mechanical ventilation", "clinical", "ICU"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
"pandas>=2.0",
"pyarrow>=12.0",
"matplotlib>=3.7",
"h5py>=3.8",
]
[project.optional-dependencies]
pyeit = [
"pyeit>=1.0",
]
dev = [
"pytest>=7.4",
"pytest-cov>=4.1",
"ruff>=0.4",
"coverage[toml]>=7.3",
]
[project.urls]
Repository = "https://github.com/Kernel236/fastEIT"
[tool.hatch.build.targets.wheel]
packages = ["src/fasteit"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"octave: marks tests requiring Octave/MATLAB for cross-validation",
]
[tool.coverage.run]
source = ["src/fasteit"]
branch = true
[tool.coverage.report]
fail_under = 80
show_missing = true
[tool.ruff]
target-version = "py310"
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B"]
ignore = ["E501"]