initial commit

This commit is contained in:
2026-07-14 08:33:28 +02:00
commit c7bea69e26
17 changed files with 568 additions and 0 deletions

23
pyproject.toml Normal file
View File

@@ -0,0 +1,23 @@
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "govoplan-dist-lists"
version = "0.1.8"
description = "GovOPlaN operational distribution lists and Verteiler module seed."
readme = "README.md"
requires-python = ">=3.12"
authors = [{ name = "GovOPlaN" }]
dependencies = [
"govoplan-core>=0.1.8",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
govoplan_dist_lists = ["py.typed"]
[project.entry-points."govoplan.modules"]
dist_lists = "govoplan_dist_lists.backend.manifest:get_manifest"