-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
116 lines (104 loc) · 2.91 KB
/
Copy pathpyproject.toml
File metadata and controls
116 lines (104 loc) · 2.91 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
107
108
109
110
111
112
113
114
115
116
[build-system]
requires = ["hatchling==1.32.0"]
build-backend = "hatchling.build"
[project]
name = "agentrunproof"
dynamic = ["version"]
description = "Provider-free Runner regression probes for the OpenAI Agents SDK"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [{ name = "Fu Xiaonan" }]
keywords = [
"agent-testing",
"conformance-testing",
"openai-agents",
"regression-testing",
"runstate",
]
dependencies = [
"openai-agents>=0.20.0,<0.22",
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Testing",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/FU-max-boop/agentrunproof"
Repository = "https://github.com/FU-max-boop/agentrunproof"
Issues = "https://github.com/FU-max-boop/agentrunproof/issues"
Changelog = "https://github.com/FU-max-boop/agentrunproof/blob/main/CHANGELOG.md"
Documentation = "https://github.com/FU-max-boop/agentrunproof/blob/main/docs/README.md"
Evidence = "https://github.com/FU-max-boop/agentrunproof/tree/main/evidence"
CaseStudy = "https://github.com/FU-max-boop/agentrunproof/blob/main/docs/case-study-runstate.md"
Community = "https://github.com/FU-max-boop/agentrunproof/discussions"
[project.scripts]
agentrunproof = "agentrunproof.cli:main"
[project.optional-dependencies]
test = [
"jsonschema>=4.23",
"pytest>=8",
"pytest-asyncio>=0.24",
]
dev = [
"build>=1.2",
"mypy>=1.15",
"ruff>=0.12",
"twine>=7",
]
[tool.hatch.build.targets.wheel]
packages = ["src/agentrunproof"]
[tool.hatch.build.targets.sdist]
include = [
"/CHANGELOG.md",
"/CONTRIBUTING.md",
"/docs/**",
"/examples/**",
"/LICENSE",
"/README.md",
"/SECURITY.md",
"/pyproject.toml",
"/requirements/history/**",
"/requirements/upstream/**",
"/scripts/run_current_certificate.py",
"/scripts/run_history_matrix.py",
"/scripts/run_upstream_comparison.py",
"/src/agentrunproof/**",
"/tests/**",
]
exclude = [
"/.gitignore",
"/build/**",
"/dist/**",
"/docs/assets/social-preview.png",
"/evidence/**",
]
[tool.hatch.version]
path = "src/agentrunproof/_version.py"
[tool.pytest.ini_options]
addopts = "-ra"
asyncio_mode = "auto"
testpaths = ["tests", "examples"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["B", "E4", "E7", "E9", "F", "I", "UP"]
[tool.mypy]
python_version = "3.10"
strict = true
packages = ["agentrunproof"]
[[tool.mypy.overrides]]
module = ["jsonschema", "jsonschema.*"]
ignore_missing_imports = true