18 lines
538 B
TOML
18 lines
538 B
TOML
[build-system]
|
|
requires = ["setuptools>=42", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "idea135-crisisops-open-crisis"
|
|
version = "0.1.0"
|
|
description = "Open crisis-response orchestrator with a Graph-of-Contracts primitive model; MVP with two adapters and offline-first delta-sync."
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
license = {text = "MIT"}
|
|
authors = [ { name = "OpenCode AI Collaboration" } ]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
|
|
# Optional: namespace falls back to simple package layout
|