20 lines
490 B
TOML
20 lines
490 B
TOML
[build-system]
|
|
requires = ["setuptools>=42", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "catopt_flow_category_theoretic_compositi"
|
|
version = "0.1.0"
|
|
description = "Category-theory inspired compositional optimizer for multi-tenant ML pipelines"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
license = {text = "MIT"}
|
|
authors = [ { name = "OpenCode AI" } ]
|
|
dependencies = [
|
|
"typing-extensions>=3.7",
|
|
"pytest>=7.0",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|