-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (30 loc) · 933 Bytes
/
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
[project]
name = "mdto.py"
version = "0.0.1"
authors = [
{ name="Rijnder Wever", email="[email protected]"},
{ name="Wilmar van Ommeren", email="[email protected]"},
]
license = { file = "LICENSE"}
description = "Library voor het genereren van MDTO XML bestanden"
readme = "README.md"
requires-python = ">=3.11"
keywords = ["MDTO", "archiving", "Goverment data"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
dependencies = [
"validators",
"opf-fido",
"lxml",
]
[project.urls]
Homepage = "https://github.com/Regionaal-Archief-Rivierenland/mdto.py"
Issues = "https://github.com/Regionaal-Archief-Rivierenland/mdto.py/issues"
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["mdto"]