-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (28 loc) · 847 Bytes
/
pyproject.toml
File metadata and controls
28 lines (28 loc) · 847 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm>=8.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
[project]
name = "segmentationstitcher"
dynamic = ["version"]
keywords = ["Medical", "Image", "Segmentation", "Merge", "SPARC"]
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{ name="Richard Christie", email="r.christie@auckland.ac.nz" },
]
dependencies = [
"cmlibs.maths>=0.6.2",
"cmlibs.utils>=0.9",
"cmlibs.zinc>=4.1",
"scipy"
]
description = "Utility for stitching segmentations of networks and other features from multiple adjacent blocks"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[tool.setuptools_scm]