-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (46 loc) · 1.6 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "agentbreak"
version = "0.4.6"
description = "Chaos proxy for testing LLM agent resilience and security — inject faults, adversarial inputs, and protocol attacks. Supports OpenAI, Anthropic, and MCP."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
keywords = ["llm", "openai", "anthropic", "mcp", "proxy", "chaos-testing", "resilience", "agents", "fault-injection", "testing", "ai-agents", "security", "adversarial", "prompt-injection", "red-team"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Testing",
"Topic :: Internet :: Proxy Servers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"fastapi>=0.115.0",
"httpx>=0.27.0",
"pydantic>=2.7.0",
"pyyaml>=6.0.0",
"typer>=0.12.0",
"uvicorn>=0.30.0",
]
[project.urls]
Homepage = "https://github.com/mnvsk97/agentbreak"
Repository = "https://github.com/mnvsk97/agentbreak"
Issues = "https://github.com/mnvsk97/agentbreak/issues"
Documentation = "https://github.com/mnvsk97/agentbreak#readme"
[project.scripts]
agentbreak = "agentbreak.main:cli"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
]
[tool.setuptools.packages.find]
include = ["agentbreak*"]
[tool.pytest.ini_options]
testpaths = ["tests"]