-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (98 loc) · 5.9 KB
/
Copy pathpyproject.toml
File metadata and controls
106 lines (98 loc) · 5.9 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "agent-engineering-toolkit"
version = "1.19.1"
description = "A local Evidence Plane for coding agents: bind proof, scope, review context, and freshness to exact source."
readme = "PYPI_README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [{ name = "AdvancingTitans" }]
keywords = [
"ai-agents",
"coding-agents",
"agentic-coding",
"agent-skills",
"codex",
"claude-code",
"evidence",
"provenance",
"reproducibility",
"software-testing",
"github-actions",
"code-review",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Quality Assurance",
]
[project.urls]
Homepage = "https://github.com/AdvancingTitans/agent-engineering-toolkit"
Repository = "https://github.com/AdvancingTitans/agent-engineering-toolkit"
Documentation = "https://github.com/AdvancingTitans/agent-engineering-toolkit#readme"
Issues = "https://github.com/AdvancingTitans/agent-engineering-toolkit/issues"
Changelog = "https://github.com/AdvancingTitans/agent-engineering-toolkit/blob/main/CHANGELOG.md"
[project.scripts]
aet = "aet.cli:main"
[dependency-groups]
dev = ["pytest>=9.0"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
aet = [
"rulepacks_builtin.json",
"atlas/assets/*",
"demo/fixtures/stale-proof/manifest.json",
"demo/fixtures/stale-proof/repo/src/*.py",
"demo/fixtures/stale-proof/repo/tests/*.py",
]
[tool.setuptools.data-files]
"share/aet/schemas" = ["schemas/*.json"]
"share/aet/schemas/evidence-bundle/v1" = ["schemas/evidence-bundle/v1/*.json"]
"share/aet/schemas/run-record/v1" = ["schemas/run-record/v1/*.json"]
"share/aet/schemas/investigation/v1" = ["schemas/investigation/v1/*.json"]
"share/aet/schemas/evidence-atlas/v1" = ["schemas/evidence-atlas/v1/*.json"]
"share/aet/schemas/optimization/v1" = ["schemas/optimization/v1/*.json"]
"share/aet/schemas/planning" = ["schemas/planning/*.json"]
"share/aet/schemas/demo/v1" = ["schemas/demo/v1/*.json"]
"share/aet/schemas/risk/v1" = ["schemas/risk/v1/*.json"]
"share/aet/schemas/review-graph/v1" = ["schemas/review-graph/v1/*.json"]
"share/aet/evolution/audit/core" = ["tests/evolution/audit/core/*.json"]
"share/aet/evolution/audit/validation" = ["tests/evolution/audit/validation/*.json"]
"share/aet/evolution/audit/held_out" = ["tests/evolution/audit/held_out/*.json"]
"share/aet/evolution/audit/adversarial" = ["tests/evolution/audit/adversarial/*.json"]
"share/aet/fixtures/audit-evolution/duplicate" = ["tests/fixtures/audit-evolution/duplicate/*"]
"share/aet/fixtures/audit-evolution/empty" = ["tests/fixtures/audit-evolution/empty/*"]
"share/aet/fixtures/audit-evolution/example-block" = ["tests/fixtures/audit-evolution/example-block/*"]
"share/aet/fixtures/audit-evolution/heldout-duplicate" = ["tests/fixtures/audit-evolution/heldout-duplicate/*"]
"share/aet/fixtures/audit-evolution/heldout-empty" = ["tests/fixtures/audit-evolution/heldout-empty/*"]
"share/aet/fixtures/audit-evolution/heldout-missing-absolute" = ["tests/fixtures/audit-evolution/heldout-missing-absolute/*"]
"share/aet/fixtures/audit-evolution/heldout-missing-command" = ["tests/fixtures/audit-evolution/heldout-missing-command/*"]
"share/aet/fixtures/audit-evolution/heldout-missing-link" = ["tests/fixtures/audit-evolution/heldout-missing-link/*"]
"share/aet/fixtures/audit-evolution/heldout-package-script-missing" = ["tests/fixtures/audit-evolution/heldout-package-script-missing/*"]
"share/aet/fixtures/audit-evolution/heldout-valid" = ["tests/fixtures/audit-evolution/heldout-valid/*"]
"share/aet/fixtures/audit-evolution/large-root" = ["tests/fixtures/audit-evolution/large-root/*"]
"share/aet/fixtures/audit-evolution/missing-absolute" = ["tests/fixtures/audit-evolution/missing-absolute/*"]
"share/aet/fixtures/audit-evolution/missing-command" = ["tests/fixtures/audit-evolution/missing-command/*"]
"share/aet/fixtures/audit-evolution/missing-link" = ["tests/fixtures/audit-evolution/missing-link/*"]
"share/aet/fixtures/audit-evolution/package-script-missing" = ["tests/fixtures/audit-evolution/package-script-missing/*"]
"share/aet/fixtures/audit-evolution/valid" = ["tests/fixtures/audit-evolution/valid/*"]
"share/aet/fixtures/audit-evolution/skill-missing-frontmatter/skills/example" = ["tests/fixtures/audit-evolution/skill-missing-frontmatter/skills/example/*"]
"share/aet/fixtures/audit-evolution/skill-name-mismatch/skills/example" = ["tests/fixtures/audit-evolution/skill-name-mismatch/skills/example/*"]
"share/aet/fixtures/audit-evolution/skill-no-verification/skills/example" = ["tests/fixtures/audit-evolution/skill-no-verification/skills/example/*"]
"share/aet/fixtures/audit-evolution/heldout-skill-missing-frontmatter/skills/heldout" = ["tests/fixtures/audit-evolution/heldout-skill-missing-frontmatter/skills/heldout/*"]
"share/aet/fixtures/audit-evolution/heldout-skill-name-mismatch/skills/heldout" = ["tests/fixtures/audit-evolution/heldout-skill-name-mismatch/skills/heldout/*"]
"share/aet/fixtures/audit-evolution/heldout-skill-no-verification/skills/heldout" = ["tests/fixtures/audit-evolution/heldout-skill-no-verification/skills/heldout/*"]
"share/aet/repository-audit-showcase/profiles" = ["repository-audit-showcase/profiles/*.json"]
"share/aet/repository-audit-showcase/schemas" = ["repository-audit-showcase/schemas/*.json"]
"share/aet/repository-audit-showcase/cases/swe-agent" = ["repository-audit-showcase/cases/swe-agent/*.json"]
"share/aet/repository-audit-showcase/cases/google-adk" = ["repository-audit-showcase/cases/google-adk/*.json"]
"share/aet/repository-audit-showcase/cases/openhands" = ["repository-audit-showcase/cases/openhands/*.json"]
"share/aet/repository-audit-showcase/docs" = ["repository-audit-showcase/docs/*.md"]
[tool.pytest.ini_options]
testpaths = ["tests"]