-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.15 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
[project]
name = "stl2nii"
version = "1.0"
requires-python = ">=3.9"
description = "stl to NIFTI (.nii.gz) file converter"
readme = "README.md"
authors = [
{ name = "Vicent Caselles", email = "[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
keywords = [
'image segmentation',
'semantic segmentation',
'medical image analysis',
'medical image segmentation',
]
dependencies = [
"itk-iomeshstl"
]
[project.urls]
homepage = "https://github.com/vcasellesb/stl2nii"
repository = "https://github.com/vcasellesb/stl2nii"
[project.scripts]
stl2nii = "stl2nii.main:run_stl2nii_entrypoint"
[project.optional-dependencies]
dev = [
"black",
"ruff",
"pre-commit"
]
[build-system]
requires = ["setuptools>=67.8.0"]
build-backend = "setuptools.build_meta"
[tool.codespell]
skip = '.git,*.pdf,*.svg'
#
# ignore-words-list = ''
[tool.setuptools.packages.find]
exclude = ["bash_utils"]