Files
DeepAudit/backend/pyproject.toml
T
lintsinghua 9054f0d2c5 feat: v2.0.0-test release
Major changes:
- Backend: Add report generator service with comprehensive analysis
- Backend: Enhanced scan and task endpoints
- Frontend: Refactor instant analysis page and export dialog
- Frontend: Optimize report export service
- Infrastructure: Simplify Dockerfile and update docker-compose
- Docs: Streamline README documentation
- Assets: Add logo with transparent background
2025-11-28 20:34:15 +08:00

26 lines
542 B
TOML

[project]
name = "xcodereviewer-backend"
version = "0.1.0"
description = "XCodeReviewer Backend API"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.100.0",
"uvicorn[standard]",
"sqlalchemy>=2.0.0",
"asyncpg",
"alembic",
"pydantic>=2.0.0",
"pydantic-settings",
"passlib[bcrypt]",
"python-jose[cryptography]",
"python-multipart",
"httpx",
"email-validator",
"greenlet",
"bcrypt<5.0.0",
"litellm>=1.0.0",
"reportlab>=4.0.0",
"weasyprint>=66.0",
"jinja2>=3.1.6",
]