feat: implement formal decision registry

This commit is contained in:
2026-08-01 17:48:29 +02:00
commit ba8e42fd03
24 changed files with 1236 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "govoplan-decisions"
version = "0.1.14"
description = "Formal institutional decision lifecycle and reconstruction for GovOPlaN."
readme = "README.md"
requires-python = ">=3.12"
authors = [{ name = "GovOPlaN" }]
dependencies = ["govoplan-core>=0.1.14"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
govoplan_decisions = ["py.typed"]
[project.entry-points."govoplan.modules"]
"decisions" = "govoplan_decisions.backend.manifest:get_manifest"