Initialize GovOPlaN SOAP connector

This commit is contained in:
2026-07-11 17:17:06 +02:00
commit 0503638e4d
10 changed files with 235 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-soap"
version = "0.1.7"
description = "SOAP connector module for GovOPlaN"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"govoplan-core>=0.1.7",
"pydantic>=2,<3",
]
[project.entry-points."govoplan.modules"]
soap = "govoplan_soap.backend.manifest:get_manifest"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
govoplan_soap = ["py.typed"]