Files
agent_alpha/pyproject.toml
T
furyhawk 58a41093c6 feat(auth): implement authentication API with login, register, and token management
- Added token management functions in frontend API for storing and retrieving auth tokens.
- Created authentication routes in backend for user registration, login, and profile retrieval.
- Implemented JWT token creation and validation for secure user sessions.
- Updated frontend API calls to include authorization headers for protected routes.
- Added bcrypt dependency for password hashing in user registration.
2026-06-12 21:37:45 +08:00

24 lines
683 B
TOML

[project]
name = "agent-alpha"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi[standard]>=0.136.3",
"logfire[asyncpg,fastapi,httpx,sqlite3]>=4.36.0",
"pydantic-settings>=2.7.0",
"pydantic-ai-backend>=0.2.11",
"pydantic-ai-harness[code-mode]>=0.3.0",
"pydantic-ai-shields>=0.3.4",
"pydantic-ai-skills>=0.11.0",
"pydantic-ai-slim[duckduckgo,mcp,openai]>=1.107.0",
"pydantic-ai-todo>=0.2.4",
"pydantic-deep>=0.3.28",
"uvicorn[standard]>=0.34.0",
"asyncpg>=0.30.0",
"bcrypt>=4.2.0",
"redis[hiredis]>=5.2.0",
"sqlalchemy[asyncio]>=2.0.36",
]