-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 839 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 839 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nionutils"
version = "4.14.2"
authors = [
{ name = "Nion Software", email = "swift@nion.com" }
]
description = "Nion utility classes."
readme = "README.rst"
requires-python = ">=3.12"
license = "Apache-2.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"
]
urls = { "Homepage" = "https://github.com/nion-software/nionutils" }
[tool.setuptools.packages.find]
include = ["nion", "nion.utils", "nion.utils.test"]
[tool.setuptools.package-data]
"nion.utils" = ["py.typed"]
[tool.pytest.ini_options]
testpaths = [
"nion/utils"
]