Files
govoplan-audit/pyproject.toml
T

27 lines
629 B
TOML

[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "govoplan-audit"
version = "0.1.18"
description = "GovOPlaN audit platform module."
readme = "README.md"
requires-python = ">=3.12"
authors = [{ name = "GovOPlaN" }]
dependencies = [
"govoplan-core>=0.1.18",
]
[project.scripts]
govoplan-audit-verify = "govoplan_audit.backend.verify_evidence_bundle:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
govoplan_audit = ["py.typed"]
[project.entry-points."govoplan.modules"]
audit = "govoplan_audit.backend.manifest:get_manifest"