Files
govoplan-rest/pyproject.toml

25 lines
547 B
TOML

[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"