24 lines
586 B
TOML
24 lines
586 B
TOML
[build-system]
|
|
requires = ["setuptools>=69", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "govoplan-dist-lists"
|
|
version = "0.1.8"
|
|
description = "GovOPlaN operational distribution lists and Verteiler module seed."
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
authors = [{ name = "GovOPlaN" }]
|
|
dependencies = [
|
|
"govoplan-core>=0.1.8",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-data]
|
|
govoplan_dist_lists = ["py.typed"]
|
|
|
|
[project.entry-points."govoplan.modules"]
|
|
dist_lists = "govoplan_dist_lists.backend.manifest:get_manifest"
|