From dd1f713e42ed35600673f329ded2223d0a139045 Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Sat, 2 May 2026 23:48:02 +0000 Subject: [PATCH] chore(deps): add SQLAlchemy, Alembic, Azure Blob, bcrypt, flask-jwt-extended --- backend/pyproject.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index bc37ed8c..6dce211c 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -35,6 +35,18 @@ dependencies = [ "pydantic>=2.0.0", "pyjwt>=2.8.0", "gunicorn>=22.0.0", + + # 数据库 & ORM + "sqlalchemy>=2.0.0", + "alembic>=1.13.0", + "flask-sqlalchemy>=3.1.0", + + # Azure 存储 + "azure-storage-blob>=12.19.0", + + # 安全 & 认证 + "bcrypt>=4.1.0", + "flask-jwt-extended>=4.6.0", ] [project.optional-dependencies]