25 lines
558 B
TOML
25 lines
558 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "idea161-civicpulse-privacy-preserving"
|
|
version = "0.1.0"
|
|
description = "Privacy-preserving disaster response sandbox with offline-first engine and adapters."
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
dynamic = []
|
|
authors = [
|
|
{name = "OpenCode"},
|
|
]
|
|
license = {text = "MIT"}
|
|
|
|
[project.urls]
|
|
Homepage = "https://example.org/civicpulse"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = { attr = "__version__" }
|