-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (44 loc) · 1.28 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
[project]
name = "dice-score-3d"
version = "1.1.0"
#requires-python = ">=3.10"
requires-python = ">=3.7"
description = "Utility for calculating the Dice Similarity Coefficient (DSC) for 3D segmentation masks."
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "George Stoica", email = "[email protected]" },
]
maintainers = [
{ name = "George Stoica", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
keywords = [
"image segmentation",
"dice similarity coefficient",
"dice score"
]
dependencies = [
"numpy",
"SimpleITK",
"tqdm",
]
[project.urls]
Repository = "https://github.com/ancestor-mithril/dice-score-3d"
Issues = "https://github.com/ancestor-mithril/dice-score-3d/issues"
[project.scripts]
dice_score_3d = "dice_score_3d.main:main"
[project.optional-dependencies]
dev = [
"pytest",
"flake8"
]