forked from berabuddies/agentflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 752 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 752 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
[build-system]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[project]
name = "agentflow"
version = "0.1.0"
description = "Parallel and DAG orchestration for Codex, Claude, and Kimi agents"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "OpenAI Codex CLI" }]
dependencies = [
"boto3>=1.35.0",
"fastapi>=0.116.0",
"httpx>=0.28.1",
"jinja2>=3.1.6",
"pydantic>=2.11.0",
"PyYAML>=6.0.2",
"typer>=0.16.0",
"uvicorn>=0.35.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.4.0",
"pytest-asyncio>=1.1.0",
]
[project.scripts]
agentflow = "agentflow.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["agentflow"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]