23 lines
515 B
TOML
23 lines
515 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "techviz-harness"
|
|
version = "0.1.0"
|
|
description = "Context-grounded technical visualization harness for documentation agents"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = {text = "MIT"}
|
|
authors = [{name = "TechViz Harness contributors"}]
|
|
dependencies = []
|
|
|
|
[project.scripts]
|
|
techviz = "techviz.cli:main"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|