Initialize GovOPlaN REST connector

This commit is contained in:
2026-07-11 17:17:03 +02:00
commit ada9f843eb
10 changed files with 226 additions and 0 deletions

24
pyproject.toml Normal file
View File

@@ -0,0 +1,24 @@
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "govoplan-rest"
version = "0.1.7"
description = "GovOPlaN REST connector module."
readme = "README.md"
requires-python = ">=3.12"
authors = [{ name = "GovOPlaN" }]
dependencies = [
"govoplan-core>=0.1.7",
"pydantic>=2,<3",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
govoplan_rest = ["py.typed"]
[project.entry-points."govoplan.modules"]
rest = "govoplan_rest.backend.manifest:get_manifest"