init: document-haness 하네스 설계
This commit is contained in:
+34
-9
@@ -1,10 +1,35 @@
|
||||
[tool.pytest.ini_options]
|
||||
testpaths = ["tests"]
|
||||
addopts = "-ra"
|
||||
markers = [
|
||||
"live: 실제 LLM CLI와 설치된 스킬을 호출하는 선택적 통합 테스트",
|
||||
]
|
||||
[build-system]
|
||||
requires = ["setuptools>=68"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[tool.ruff]
|
||||
target-version = "py311"
|
||||
line-length = 100
|
||||
[project]
|
||||
name = "claridoc-harness"
|
||||
version = "0.1.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"]
|
||||
|
||||
Reference in New Issue
Block a user