20 lines
503 B
TOML
20 lines
503 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "catopt-grid"
|
|
version = "0.1.0"
|
|
description = "Category-theoretic compositional optimizer skeleton for cross-domain distributed edge meshes (MVP)."
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
license = {text = "MIT"}
|
|
authors = [{name = "OpenCode AI", email = "ops@example.com"}]
|
|
dependencies = [
|
|
"numpy>=1.23",
|
|
"pydantic>=1.10",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["catopt_grid"]
|