-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 1.49 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
[tool.poetry]
name = "mini-agent-harness"
version = "0.2.0"
description = "Small, test-first AI agent starter kit with built-in pytest harness."
authors = ["Haluk Sonmezler <halukson@icloud.com>"]
readme = "README.md"
packages = [
{ include = "mini_agent_harness" }
]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
pytest = "^8.2.0"
pyyaml = "^6.0"
typer = "^0.9.0"
# Evaluation / validation libs (optional but pinned for dev)
deepeval = {version = "^0.20.5", optional = true}
guardrails-ai = {version = "^0.4.0", optional = true}
langsmith = {version = "^0.1.45", optional = true}
openai = {version = "^1.25.0", optional = true}
fastapi = {version = "^0.110.0", optional = true}
uvicorn = {version = "^0.29.0", optional = true}
python-multipart = "^0.0.9"
google-generativeai = {version = "^0.4.1", optional = true}
[tool.poetry.extras]
all = ["deepeval", "guardrails-ai", "langsmith", "openai", "fastapi", "uvicorn", "python-multipart", "google-generativeai"]
server = ["fastapi", "uvicorn", "python-multipart"]
gemini = ["google-generativeai"]
[tool.poetry.scripts]
mini-agent = "mini_agent_harness.cli:app"
[tool.poetry.plugins."pytest11"]
mini_agent_harness = "mini_agent_harness.testing.plugin"
[build-system]
requires = ["poetry-core>=1.8.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
[tool.poetry.group.dev.dependencies]
# Type stubs for PyYAML to silence "import could not be resolved" in editors.
types-PyYAML = "^6.0.12"