feat: add backend pyproject.toml with dependencies

This commit is contained in:
Ken
2026-05-26 18:18:38 +00:00
parent 04ae443207
commit 9b941d173d
3 changed files with 746 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
[project]
name = "research-workbench"
version = "0.1.0"
description = "AI research workbench backend - FastAPI + AG-UI adapter for amplifierd"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"httpx>=0.28.0",
"bcrypt>=4.2.0",
"python-multipart>=0.0.18",
"ag-ui-protocol>=0.1.18",
]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"httpx>=0.28.0",
]