-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (43 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
55 lines (43 loc) · 1.17 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
[project]
name = "backplaned"
version = "0.1.0"
description = "ESB-style multi-agent router and personal assistant agent suite"
requires-python = ">=3.12"
dependencies = [
# Core framework
"fastapi>=0.135",
"uvicorn>=0.42",
"httpx>=0.28",
"httpx-sse>=0.4",
"pydantic>=2.12",
"python-dotenv>=1.2",
"python-multipart>=0.0.22",
"itsdangerous>=2.2",
# LLM providers
"openai>=2.30",
"anthropic>=0.86",
"google-genai>=1.14",
# Document conversion (md_converter)
"markitdown>=0.1.5",
"markitdown-ocr>=0.1.0",
# Image processing (read_image resize)
"Pillow>=10.0",
# Memory (memory_agent) + Knowledge base (kb_agent)
"lancedb>=0.30",
# MCP protocol (mcp_agent, mcp_server)
"mcp>=1.26",
# Telegram (channel_agent)
"python-telegram-bot>=22.7",
# Discord (channel_agent — uses raw websockets)
"websockets>=16.0",
# Reminder/cron (rrule parsing, cron scheduling)
"python-dateutil>=2.9",
"croniter>=6.0",
# SSE streaming
"sse-starlette>=3.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["backplaned"]