36 lines
963 B
TOML
36 lines
963 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "claridoc-harness"
|
|
version = "0.2.0"
|
|
description = "Contract-first, multi-agent harness for logically structured technical documentation"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = { text = "MIT" }
|
|
authors = [{ name = "ClariDoc Harness Contributors" }]
|
|
keywords = ["technical-writing", "documentation", "llm", "codex", "claude", "antigravity"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Environment :: Console",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Documentation",
|
|
"Topic :: Software Development :: Quality Assurance",
|
|
]
|
|
dependencies = []
|
|
|
|
[project.optional-dependencies]
|
|
antigravity = ["google-antigravity>=0.1.7"]
|
|
dev = []
|
|
|
|
[project.scripts]
|
|
claridoc = "claridoc.cli:main"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|