Files
Neo-ZQYY/apps/backend/pyproject.toml
Neo 6f8f12314f feat: 累积功能变更 — 聊天集成、租户管理、小程序更新、ETL 增强、迁移脚本
包含多个会话的累积代码变更:
- backend: AI 聊天服务、触发器调度、认证增强、WebSocket、调度器最小间隔
- admin-web: ETL 状态页、任务管理、调度配置、登录优化
- miniprogram: 看板页面、聊天集成、UI 组件、导航更新
- etl: DWS 新任务(finance_area_daily/board_cache)、连接器增强
- tenant-admin: 项目初始化
- db: 19 个迁移脚本(etl_feiqiu 11 + zqyy_app 8)
- packages/shared: 枚举和工具函数更新
- tools: 数据库工具、报表生成、健康检查
- docs: PRD/架构/部署/合约文档更新

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-06 00:03:48 +08:00

39 lines
1.2 KiB
TOML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# AI_CHANGELOG
# - 2026-02-15 | Prompt: 让 FastAPI 成功启动 | 补全运行依赖fastapi/uvicorn/psycopg2-binary/python-dotenv使后端可通过 uv run uvicorn 启动
# - 风险:依赖版本变更可能影响其他 workspace 成员验证uv sync --all-packages && uv run uvicorn app.main:app
[project]
name = "zqyy-backend"
version = "0.1.0"
requires-python = ">=3.10"
# CHANGE 2026-02-15 | intent: 补全后端运行依赖,原先仅声明 neozqyy-shared 导致 uvicorn/fastapi 缺失无法启动
# assumptions: 版本下限与 tech.md 记录的核心依赖一致uvicorn[standard] 包含 uvloop/httptools 等性能依赖
dependencies = [
"neozqyy-shared",
"fastapi>=0.115",
"uvicorn[standard]>=0.34",
"psycopg2-binary>=2.9",
"python-dotenv>=1.0",
"python-jose[cryptography]>=3.3",
"bcrypt>=4.0",
"psutil>=5.9",
"dashscope>=1.20",
"python-multipart>=0.0.9",
]
[tool.uv.sources]
neozqyy-shared = { workspace = true }
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"hypothesis>=6.100",
"httpx>=0.27",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
asyncio_mode = "auto"