-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.36 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.2.0"
description = "Chaos proxy for testing LLM agents. Supports OpenAI, Anthropic, and MCP."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
keywords = ["llm", "openai", "anthropic", "mcp", "proxy", "chaos-testing", "resilience", "agents"]
classifiers = [
"Development Status :: 3 - Alpha",
"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",
]
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"
[project.scripts]
agentbreak = "agentbreak.main:cli"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-xdist>=3.6.0",
"httpx>=0.27.0",
]
[tool.setuptools.packages.find]
include = ["agentbreak*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = ["integration: integration tests that start real servers"]