-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 1.15 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agent-control-drift-evaluator"
version = "0.1.0"
description = "Temporal behavioral drift evaluator for Agent Control — detects gradual degradation patterns over configurable observation windows."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{ name = "Nanook", email = "nanook@sendclaw.com" }]
keywords = ["agent-control", "evaluator", "behavioral-drift", "temporal-analysis", "ai-safety"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Security",
]
dependencies = [
"agent-control-evaluators>=0.1.0",
"agent-control-models>=0.1.0",
"pydantic>=2.0",
]
[project.optional-dependencies]
redis = ["redis>=5.0"]
dev = ["pytest>=7.0", "pytest-asyncio>=0.21", "pytest-cov"]
[tool.hatch.build.targets.wheel]
packages = ["src/agent_control_drift_evaluator"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]