# ============================================================================= # Coba 後端 Python 依賴清單(階段 1) # ============================================================================= # 鎖版本是為了讓多人開發 / 不同時間重 build 都拿到同一份環境, # 避免「在我這邊跑得起來、在你那邊不行」的鬼故事。 # 上線前會用 pip-tools / uv 產一份 lock,目前先手動鎖大版本。 # ============================================================================= # ---------- Web 框架 ---------- fastapi==0.115.5 uvicorn[standard]==0.32.1 # ---------- 資料驗證 / 設定 ---------- pydantic==2.10.3 pydantic-settings==2.6.1 email-validator==2.2.0 # ---------- 資料庫(SQLAlchemy 2.0 async + asyncpg)---------- sqlalchemy[asyncio]==2.0.36 asyncpg==0.30.0 alembic==1.14.0 greenlet==3.1.1 # ---------- 認證(JWT + bcrypt 密碼雜湊)---------- pyjwt==2.10.1 passlib[bcrypt]==1.7.4 bcrypt==4.0.1 # ---------- 工具 ---------- python-multipart==0.0.20 httpx==0.28.0 # ---------- 測試 ---------- pytest==8.3.4 pytest-asyncio==0.24.0 asgi-lifespan==2.1.0 aiosqlite==0.20.0 # 測試用 in-memory DB(不依賴 PostgreSQL)