-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 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
[build-system]
# AVOID CHANGING REQUIRES: IT WILL BE UPDATED BY PYSCAFFOLD!
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
# For smarter version schemes and other configuration options,
# check out https://github.com/pypa/setuptools_scm
version_scheme = "no-guess-dev"
[project]
# dynamic = ["version"]
name = "dcm2mids"
version = "v0.2.20240725"
authors = [
{ name="Jose Manuel Saborit Torres", email="[email protected]" },
{ name="Alejandro Mora Rubio", email="[email protected]" },
]
description = "Tool for converting DICOM images to the BIDS/MIDS structure"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "GPL-3.0-or-later" }
dependencies = [
"importlib-metadata; python_version<'3.8'",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
testing = ["pytest", "pytest-cov"]
[project.urls]
Homepage = "https://github.com/BIMCV-CSUSP/dcm2mids"
Issues = "https://github.com/BIMCV-CSUSP/dcm2mids/issues"