-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 887 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 887 Bytes
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
[project]
name = "ai-agent-engine"
version = "0.1.0"
description = "Lightweight AI agent orchestration engine with YAML workflows and multi-LLM routing"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0,<1.0",
"uvicorn>=0.34.0",
"httpx>=0.28.0,<1.0",
"pyyaml>=6.0",
"structlog>=24.0.0",
"pydantic>=2.0.0,<3.0",
"pydantic-settings>=2.0.0",
]
[dependency-groups]
dev = [
"pytest>=8.0.0",
"ruff>=0.9.0",
"pytest-asyncio>=0.25.0",
"bandit>=1.7.0",
"pip-audit>=2.7.0",
"pytest-cov>=6.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/agent_engine"]
[tool.ruff]
target-version = "py311"
line-length = 88
src = ["src"]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "UP"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"