22 lines
555 B
TOML
22 lines
555 B
TOML
[build-system]
|
|
requires = ["setuptools>=69", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "govoplan-portal"
|
|
version = "0.1.20"
|
|
description = "GovOPlaN service discovery and public portal module."
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
authors = [{ name = "GovOPlaN" }]
|
|
dependencies = ["govoplan-core>=0.1.18"]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-data]
|
|
govoplan_portal = ["py.typed"]
|
|
|
|
[project.entry-points."govoplan.modules"]
|
|
"portal" = "govoplan_portal.backend.manifest:get_manifest"
|