26 lines
526 B
TOML
26 lines
526 B
TOML
[build-system]
|
|
requires = ["setuptools>=69", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "idea154-civicmesh-studio-federated"
|
|
version = "0.1.0"
|
|
description = "Federated urban resilience planning primitives for cross-neighborhood coordination."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"pydantic>=2.7,<3",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"build>=1.2",
|
|
"pytest>=8",
|
|
]
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|