-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.43 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
[tool.poetry]
name = "tool-monkey"
version = "0.1.0"
description = "Chaos testing toolkit for LLM agents. Inject deterministic failures into tool calls to test error handling and retry logic."
authors = ["Daria darianaumova5@gmail.com"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/daria425/tool-monkey"
repository = "https://github.com/daria425/tool-monkey"
keywords = ["llm", "agents", "chaos", "testing", "langchain"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = "^3.10"
pydantic = "^2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0"
pytest-cov = "^7.0"
python-dotenv = "^1.0"
[tool.poetry.group.examples.dependencies]
langchain = "^1.0"
langchain-core = "^1.0"
langchain-openai = "^1.0"
langgraph = "^1.0"
openai = "^2.0"
structlog = "^25.0"
langgraph-prebuilt = "^1.0.5"
tenacity = "^9.1.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v --tb=short"
[tool.coverage.run]
source = ["tool_monkey"]
omit = ["tests/*", "examples/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
]