forked from rordenlab/dcm2niix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
51 lines (46 loc) · 1.58 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
[build-system]
requires = ["setuptools_scm>=7", "scikit-build-core[pyproject]>=0.5"]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
sdist.include = ["dcm2niix/_dist_ver.py"]
minimum-version = "0.5"
cmake.minimum-version = "3.18"
[tool.setuptools_scm]
write_to = "dcm2niix/_dist_ver.py"
write_to_template = "__version__ = '{version}'\n"
[project]
name = "dcm2niix"
description = "DCM2NIIX Python package"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["research", "jpeg", "dicom", "neuroscience", "mri", "neuroimaging", "nifti", "dcm", "nii", "nitrc", "bids", "dcm2niix", "mricrogl"]
license = {file = "license.txt"}
authors = [
{name = "Li X"},
{name = "Morgan PS"},
{name = "Ashburner J"},
{name = "Smith J"},
{name = "Rorden C"}
]
maintainers = [
{name = "Casper da Costa-Luis", email = "imaging@cdcl.ml"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Medical Science Apps."
]
dynamic = ["version"]
[project.scripts]
dcm2niix = "dcm2niix:main"
[project.urls]
repository = "https://github.com/rordenlab/dcm2niix"
changelog = "https://github.com/rordenlab/dcm2niix/releases"
documentation = "https://www.nitrc.org/plugins/mwiki/index.php/dcm2nii:MainPage"