forked from robbert-harms/pyschematron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (48 loc) · 1.2 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
46
47
48
49
50
51
52
[project]
name = "pyschematron"
description = "Schematron validation in Python."
readme = "README.rst"
version = "1.1.7"
requires-python = ">=3.12"
keywords = ["Schematron", "XML validation"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.12",
]
license = { file="LICENSE" }
authors = [
{ name = "Robbert Harms", email = "[email protected]" }
]
dependencies = [
"xmlschema~=3.4.3",
"elementpath~=4.7.0",
"typer[all]>=0.15.1",
"appdirs~=1.4.4",
"lxml~=5.3.1",
"Jinja2~=3.1.5",
"ruyaml~=0.91.0",
"frozendict~=2.4.6"
]
[project.optional-dependencies]
test = [
"pytest~=8.3.4",
"pytest-check~=2.5.0",
"pytest-cov~=6.0.0",
"pytest-html~=4.1.1",
"tox~=4.24.1"
]
doc = [
"Sphinx~=8.2.0",
"git-cliff~=2.8.0"
]
[project.urls]
Homepage = "https://github.com/robbert-harms/pyschematron/"
[project.scripts]
pyschematron = "pyschematron.cli:app"
[build-system]
requires = ["flit_core >=3.9,<4"]
build-backend = "flit_core.buildapi"