18 lines
432 B
TOML
18 lines
432 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "citygrid"
|
|
version = "0.1.0"
|
|
description = "Policy-driven federated optimization for cross-utility districts (CityGrid MVP)"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
license = { text = "MIT" }
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["citygrid"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = { attr = "citygrid.__version__" }
|