33 lines
722 B
TOML
33 lines
722 B
TOML
[build-system]
|
|
requires = ["setuptools>=69", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "govoplan-xrechnung"
|
|
version = "0.1.20"
|
|
description = "GovOPlaN inbound XRechnung validation connector."
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
authors = [{ name = "GovOPlaN" }]
|
|
dependencies = [
|
|
"defusedxml>=0.7.1",
|
|
"govoplan-core>=0.1.37",
|
|
"govoplan-access>=0.1.18",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-data]
|
|
govoplan_xrechnung = ["py.typed"]
|
|
|
|
[project.entry-points."govoplan.modules"]
|
|
xrechnung = "govoplan_xrechnung.backend.manifest:get_manifest"
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py312"
|