-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (58 loc) · 2.02 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (58 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ai-harness"
version = "0.2.0"
description = "Policy-governed local engineering harness with a provider-neutral runtime"
readme = "docs/index.md"
requires-python = ">=3.11"
dependencies = [
"openai-codex==0.144.4",
"opentelemetry-api>=1.44,<2",
"opentelemetry-exporter-otlp-proto-http>=1.44,<2",
"opentelemetry-sdk>=1.44,<2",
"PyYAML>=6.0",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.scripts]
agent = "ai_harness.cli:main"
[tool.setuptools.packages.find]
include = ["ai_harness*"]
[tool.setuptools.data-files]
"share/ai-harness" = [
".agent-artifact-owners.yaml",
".agent-policy.yaml",
".agent-project-profiles.yaml",
".agent-recovery.yaml",
".agent-role-capabilities.yaml",
".agent-role-contracts.yaml",
".agent-routing.yaml",
".agent-runtime.yaml",
".agent-tool-policy.yaml",
".agent-workflows.yaml",
"AGENTS.md",
"install.sh",
"Makefile",
"packaging/.agent-repositories.yaml",
]
"share/ai-harness/scripts" = ["scripts/*.py"]
"share/ai-harness/scripts/adapters" = ["scripts/adapters/*.py"]
"share/ai-harness/scripts/runtimes" = ["scripts/runtimes/*.py"]
"share/ai-harness/schemas" = ["schemas/*.json"]
"share/ai-harness/schemas/roles" = ["schemas/roles/*.json"]
"share/ai-harness/.agents/prompts" = [".agents/prompts/*.md"]
"share/ai-harness/evals" = ["evals/README.md"]
"share/ai-harness/evals/datasets" = ["evals/datasets/*.json"]
"share/ai-harness/evals/benchmarks" = ["evals/benchmarks/*.json"]
"share/ai-harness/evals/golden_tasks" = ["evals/golden_tasks/*.json"]
"share/ai-harness/evals/regressions" = ["evals/regressions/*.json"]
"share/ai-harness/evals/rubrics" = ["evals/rubrics/*.json"]
"share/ai-harness/evals/baselines" = ["evals/baselines/*.json"]
"share/ai-harness/evals/experiments" = ["evals/experiments/*.json"]