-
Notifications
You must be signed in to change notification settings - Fork 51
/
pyproject.toml
42 lines (36 loc) · 1.34 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pynrrd"
dynamic = ["version"]
description = "Pure python module for reading and writing NRRD files."
readme = { file = "README.rst", content-type = "text/x-rst" }
requires-python = ">=3.7"
license = { file = "LICENSE" }
authors = [
{ name = "Maarten Everts", email = "[email protected]" },
{ name = "Addison Elliott", email = "[email protected]" }
]
keywords = ["nrrd", "teem", "image", "processing", "file", "format"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = ["numpy >= 1.21", "typing_extensions"]
[project.optional-dependencies]
dev = ["build", "pre-commit", "pytest"]
[project.urls]
Homepage = "https://github.com/mhe/pynrrd"
Documentation = "https://pynrrd.readthedocs.io/en/stable"
Tracker = "https://github.com/mhe/pynrrd/issues"
[tool.setuptools.dynamic]
version = { attr = "nrrd._version.__version__" }
[tool.setuptools.packages]
find = { exclude = ["*.tests", "*.tests.*", "tests.*", "tests"] }