-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (38 loc) · 1.07 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "AtriFlow"
version = "0.1.0"
description = "A Python package for atrial flow rate estimation in patient-specific geometries."
authors = [{ name = "Henrik A. Kjeldsberg", email = "henrik.kjeldsberg@live.no" }]
requires-python = ">=3.10"
license = { file = "LICENSE" }
readme = "README.md"
dependencies = [
"matplotlib>=3.0",
"numpy>=1.19.0",
"pandas>=1.0",
"scipy>=1.5.0",
"seaborn>=0.11.0"
]
[project.urls]
Homepage = "https://github.com/KVSlab/AtriFlow.git"
Repository = "https://github.com/KVSlab/AtriFlow.git"
Issues = "https://github.com/KVSlab/AtriFlow/issues"
[project.scripts]
atriflow-af = "atriflow.compute_af_flow_rate:main"
atriflow-optimize-af= "atriflow.optimize_af_flow_rate:main"
atriflow-sr = "atriflow.compute_sr_flow_rate:main"
atriflow-optimize-sr = "atriflow.optimize_sr_flow_rate:main"
[project.optional-dependencies]
test = [
"isort",
"black",
"flake8",
"pytest",
]
[tool.pytest.ini_options]
testpaths = [
"tests"
]