mirror of
https://github.com/lintsinghua/DeepAudit.git
synced 2026-09-01 15:49:10 +08:00
9054f0d2c5
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
26 lines
542 B
TOML
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",
|
|
]
|