-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (54 loc) · 1.37 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (54 loc) · 1.37 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
[project]
name = "vesskel"
license = "MIT"
version = "5.2.0"
description = "2D and 3D Skeletonization and Graph-based Analysis"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"argcomplete>=3.6.0",
"itk>=5.4.6",
"networkx>=3.4",
"numba>=0.65.0",
"numpy>=2.4.4",
"pillow>=12.2.0",
"pyyaml>=6.0.3",
"scipy>=1.17.1",
"skan>=0.13.1",
]
[project.urls]
Homepage = "https://github.com/404Simon/VesSkel"
Repository = "https://github.com/404Simon/VesSkel"
Documentation = "https://github.com/404Simon/VesSkel#readme"
Changelog = "https://github.com/404Simon/VesSkel/releases"
[project.optional-dependencies]
napari = [
"napari[all]",
"napari-assistant>=0.6.0",
"napari-simpleitk-image-processing>=0.4.9",
"napari-skimage>=0.6.0",
]
dev = [
"pytest>=9.0.2",
"pooch>=1.9.0",
"scikit-image>=0.26.0",
"nibabel>=5.4.2",
]
notebooks = [
"seaborn>=0.13.2",
"statsmodels>=0.14.6",
"scikit-learn>=1.8.0",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["vesskel*"]
[tool.setuptools.package-data]
vesskel = ["napari.yaml"]
[project.entry-points."napari.manifest"]
vesskel = "vesskel:napari.yaml"
[project.scripts]
vesskel = "vesskel.cli:main"
[tool.pytest.ini_options]
markers = ["slow: big regression tests (skip with -m 'not slow')"]