22 lines
595 B
TOML
22 lines
595 B
TOML
[build-system]
|
|
requires = ["setuptools>=69", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "govoplan-mandates"
|
|
version = "0.1.18"
|
|
description = "Effective institutional mandate, jurisdiction, and authority lifecycle for GovOPlaN."
|
|
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_mandates = ["py.typed"]
|
|
|
|
[project.entry-points."govoplan.modules"]
|
|
"mandates" = "govoplan_mandates.backend.manifest:get_manifest"
|