-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.08 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
[build-system]
requires = ["setuptools >= 61.0", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pymirc"
dynamic = ["version"]
dependencies = [
"numpy>=1.15",
"scipy>=1.1",
"matplotlib>=2.2.2",
"pydicom>=2.0",
"scikit-image>=0.14",
"numba>=0.39",
"nibabel>=3.0",
]
requires-python = ">=3.8"
authors = [
{name = "Georg Schramm"},
{name = "Tom Eelbode"},
{name = "Jeroen Bertels"},
]
maintainers = [
{name = "Georg Schramm", email = "[email protected]"}
]
description = "Python imaging utilities developed in the medical imaging research center of KU Leuven"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
]
[project.urls]
Repository = "https://github.com/gschramm/pymirc"
[tool.setuptools.packages.find]
where = ["."]
include = ["pymirc*"]
exclude = ["pymirc.__pycache__"]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "dirty-tag"