-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 793 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 793 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
[project]
name = "workflow-agent-template"
version = "0.1.0"
description = "A modular workflow/agent system powered by LangGraph and FastAPI"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aiosmtplib>=5.0.0",
"fastapi>=0.128.0",
"httpx>=0.28.1",
"langchain-core>=1.2.7",
"langchain-openai>=1.1.7",
"langgraph>=1.0.6",
"pydantic>=2.12.5",
"pydantic-settings>=2.12.0",
"python-dotenv>=1.2.1",
"uvicorn>=0.40.0",
]
[project.scripts]
serve = "uvicorn:main"
[tool.uv]
dev-dependencies = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"ruff>=0.8.0",
]
[tool.ruff]
target-version = "py312"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]