22 lines
571 B
TOML
22 lines
571 B
TOML
[build-system]
|
|
requires = ["setuptools>=69", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "govoplan-parties"
|
|
version = "0.1.16"
|
|
description = "Procedure-local party and representation lifecycle for GovOPlaN."
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
authors = [{ name = "GovOPlaN" }]
|
|
dependencies = ["govoplan-core>=0.1.16"]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-data]
|
|
govoplan_parties = ["py.typed"]
|
|
|
|
[project.entry-points."govoplan.modules"]
|
|
"parties" = "govoplan_parties.backend.manifest:get_manifest"
|