-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
111 lines (101 loc) · 2.57 KB
/
pyproject.toml
File metadata and controls
111 lines (101 loc) · 2.57 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
[project]
name = "agentassert-abc"
version = "0.2.0"
description = "Formal behavioral specification and runtime enforcement for autonomous AI agents. Agent Behavioral Contracts (ABC)."
readme = "README.md"
license = "AGPL-3.0-or-later"
requires-python = ">=3.12"
authors = [
{ name = "Varun Pratap Bhardwaj" },
]
keywords = [
"ai-agents",
"behavioral-contracts",
"runtime-enforcement",
"drift-detection",
"agent-safety",
"llm-guardrails",
"formal-specification",
"design-by-contract",
"qualixar",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Typing :: Typed",
]
dependencies = [
"pydantic>=2.10,<3",
]
[project.urls]
Homepage = "https://agentassert.com"
Documentation = "https://agentassert.com/docs"
Repository = "https://github.com/qualixar/agentassert-abc"
Paper = "https://arxiv.org/abs/2602.22302"
Issues = "https://github.com/qualixar/agentassert-abc/issues"
[project.optional-dependencies]
yaml = [
"ruamel-yaml>=0.18",
]
math = [
"scipy>=1.14",
"numpy>=2.0",
]
llm = ["litellm>=1.50"]
otel = ["opentelemetry-api>=1.28"]
all = [
"agentassert-abc[yaml,math,llm,otel]",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/agentassert_abc"]
[tool.hatch.build.targets.sdist]
exclude = [
".backup/",
"claim/",
"benchmarks/live_benchmark.py",
"benchmarks/live_results.json",
"*.ots",
".venv/",
"venv/",
]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-cov>=6.0",
"pytest-asyncio>=0.24",
"hypothesis>=6.100",
"ruff>=0.9",
"basedpyright>=1.20",
"openai>=2.30.0",
"anthropic>=0.89.0",
]
docs = [
"mkdocs-material>=9.5",
"mkdocstrings[python]>=0.27",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py312"
line-length = 99
[tool.ruff.lint]
select = ["E", "F", "I", "N", "UP", "B", "SIM", "TCH"]
[tool.basedpyright]
typeCheckingMode = "standard"
pythonVersion = "3.12"
reportUnsupportedDunderAll = false
reportMissingImports = "warning"
reportCallIssue = "warning"
reportPossiblyUnboundVariable = "warning"