-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
31 lines (28 loc) · 1.02 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "NFDInspector"
authors = [
{name = "Andreas Ketelaer", email = "[email protected]"},
]
description = "A Python package to inspect formal quality problems in research data."
readme = "README.md"
# keywords = ["TODO_KEYWORD_1", "TODO_KEYWORD_2"]
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.10"
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/montan-code/nfdinspector"
"Bug Tracker" = "https://github.com/montan-code/nfdinspector/issues"
[tool.setuptools.dynamic]
version = {attr = "nfdinspector.__version__"}