26 lines
565 B
TOML
26 lines
565 B
TOML
[build-system]
|
|
requires = ["setuptools>=69", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "govoplan-policy"
|
|
version = "0.1.5"
|
|
description = "GovOPlaN policy platform module."
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
authors = [{ name = "GovOPlaN" }]
|
|
dependencies = [
|
|
"govoplan-core>=0.1.5",
|
|
"govoplan-access>=0.1.5",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-data]
|
|
govoplan_policy = ["py.typed"]
|
|
|
|
[project.entry-points."govoplan.modules"]
|
|
policy = "govoplan_policy.backend.manifest:get_manifest"
|
|
|