-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
65 lines (59 loc) · 1.52 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[project]
name = "composable-agents"
version = "0.1.0"
description = "Composable AI agents with YAML configuration, MCP tool integration, and PostgreSQL persistence"
requires-python = ">=3.11"
dependencies = [
"deepagents>=0.3.12",
"cryptography>=46.0.5",
"langchain-core>=1.2.22",
"pyasn1>=0.6.3",
"pyjwt>=2.12.0",
"langgraph>=1.0.10",
"requests>=2.33.0",
"fastapi>=0.128.4",
"langchain-mcp-adapters>=0.1.0",
"langchain-openai>=1.1.7",
"pydantic>=2.12.5",
"pydantic-settings>=2.12.0",
"pyyaml>=6.0.3",
"sse-starlette>=3.2.0",
"uvicorn[standard]>=0.40.0",
"asyncpg>=0.30.0",
"miniopy-async>=1.21.0",
"sqlalchemy[asyncio]>=2.0.0",
"alembic>=1.13.0",
"cachetools>=7.0.5",
"arize-phoenix-otel==0.15.0",
"openinference-instrumentation-langchain==0.1.62",
"arize-phoenix-client==2.3.0",
"tenacity>=8.0.0"
]
[dependency-groups]
dev = [
"httpx>=0.28.1",
"mypy>=1.19.1",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.1.0",
"ruff>=0.15.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
select = ["E", "W", "F", "I", "B", "C4", "UP", "ARG", "SIM"]
ignore = ["E501", "B008"]
[tool.ruff.lint.isort]
known-first-party = ["src"]