feat: implement procedure party registry

This commit is contained in:
2026-08-01 17:48:37 +02:00
commit 87c705b30e
24 changed files with 1310 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-parties"
version = "0.1.14"
description = "Procedure-local party and representation lifecycle 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_parties = ["py.typed"]
[project.entry-points."govoplan.modules"]
"parties" = "govoplan_parties.backend.manifest:get_manifest"