-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (43 loc) · 1.14 KB
/
pyproject.toml
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
[project]
name = "agent-workflow-server"
version = "0.2.1"
description = ""
authors = [
]
readme = "README.md"
requires-python = ">=3.12,<4"
dependencies = [
"fastapi (>=0.115.11,<0.116.0)",
"uvicorn (>=0.34.0,<0.35.0)",
"langgraph (>=0.2.60,<0.4.0)",
"llama-index (>=0.12.0,<0.13.0)",
"dotenv (>=0.9.9,<0.10.0)",
"jsonschema (>=4.23.0,<5.0.0)",
"openapi-spec-validator (>=0.7.1,<0.8.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
server = "agent_workflow_server.main:start"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
pytest-mock = "^3.14.0"
ruff = "^0.11.0"
pytest-asyncio = "^0.25.3"
[tool.ruff]
lint.select = [ "E", "F", "I", "TID251"]
lint.ignore = [ "E501" ]
indent-width = 4
exclude = ["src/agent_workflow_server/generated/*"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests"
]
asyncio_default_fixture_loop_scope="function"