-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.56 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
46
47
48
49
50
51
52
53
54
55
[build-system] # Require setuptool version due to https://github.com/pypa/setuptools/issues/2938
requires = ["setuptools>=61.0.0", "wheel"]
[project]
name = "morphman"
version = "1.3.0"
description = "morphMan (morphological manipulation) is a collection of tools for automated and objective manipulation and reconstruction of morphological features of patient-specific vascular geometries."
authors = [{ name = "Aslak W. Bergersen, Henrik A. Kjeldsberg", email = "[email protected]" }]
requires-python = ">=3.6"
license = { file = "LICENSE" }
readme = "README.md"
dependencies = [
'scipy'
]
[project.urls]
Homepage = "https://github.com/KVSlab/morphMan.git"
Documentation = "https://morphman.readthedocs.io/"
Repository = "https://github.com/KVSlab/morphMan.git"
Issues = "https://github.com/KVSlab/morphMan/issues"
[project.scripts]
morphman-area = "morphman.manipulate_area:main_area"
morphman-bend = "morphman.manipulate_bend:main_bend"
morphman-bifurcation = "morphman.manipulate_bifurcation:main_bifurcation"
morphman-curvature = "morphman.manipulate_curvature:main_curvature"
morphman-branch = "morphman.manipulate_branch:main_branch"
morphman-surface = "morphman.manipulate_surface:main_surface"
morphman-landmark = "morphman.landmark_atrium:main_landmark"
[project.optional-dependencies]
test = [
"isort",
"black",
"flake8",
"pytest",
]
[tool.pytest.ini_options]
testpaths = [
"tests"
]
[tool.mypy]
ignore_missing_imports = true
# Folders to exclude
exclude = [
"docs/",
"build/",
]
# Folder to check with mypy
files = [
"src",
"tests"
]