23 lines
602 B
TOML
23 lines
602 B
TOML
[build-system]
|
|
requires = ["setuptools>=61", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "idea171-citypulse-participatory-digital"
|
|
version = "0.1.0"
|
|
description = "CityPulse: Participatory Digital Twin for Urban Resource Optimization (offline-first federation)"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
license = {file = "LICENSE"}
|
|
authors = [ { name = "OpenCode Collaboration" } ]
|
|
|
|
[project.urls]
|
|
Homepage = "https://example.com/citypulse"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
exclude = ["tests*"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = { attr = "__version__" }
|