-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (60 loc) · 1.98 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (60 loc) · 1.98 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
[build-system]
requires = ["setuptools>=77.0"]
build-backend = "setuptools.build_meta"
[project]
name = "agent-reliability-harness"
version = "0.2.2"
description = "Local-first policy and trajectory-regression harness for tool-using AI agents: deterministic trace validation, policy-as-code trajectory rules, baseline-vs-candidate regression gates, and CI-ready JSON/Markdown/JUnit/SARIF reports."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Felmon Fekadu" }]
keywords = [
"agents",
"llm",
"evaluation",
"reliability",
"regression-testing",
"grounding",
"tool-use",
"trajectory",
"policy-as-code",
"ci",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/felmonon/agent-reliability-harness"
Documentation = "https://github.com/felmonon/agent-reliability-harness/tree/main/docs"
Changelog = "https://github.com/felmonon/agent-reliability-harness/blob/main/CHANGELOG.md"
Issues = "https://github.com/felmonon/agent-reliability-harness/issues"
[project.optional-dependencies]
dev = ["mypy>=1.8", "ruff>=0.5", "jsonschema>=4.21", "build>=1.0"]
[project.scripts]
arh = "agent_reliability_harness.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
agent_reliability_harness = ["py.typed"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B"]
ignore = ["E501"] # long lines allowed in messages/docstrings; format stays readable
[tool.mypy]
python_version = "3.11"
strict = true
warn_unused_ignores = true
[[tool.mypy.overrides]]
module = "tests.*"
strict = false