Files
resume-agent/backend/pyproject.toml
T
hypandClaude ae2d9b128d feat: builder 简历生成 + 轻度优化 + 简历导入交付副本
自内部仓库剥离深度优化与 RAG 知识库后的交付版本:
- Builder 对话式简历生成(FSM + 意图路由 LLM 兜底增强)
- 条目级轻度优化:事实覆盖门禁 + STAR/bullet 修复链,功能/简介/成果与技术栈同级保护
- 简历导入:DOCX/PDF 解析、结构归一、手机号脱敏
- PostgreSQL 运行时 + Alembic 迁移链

Co-Authored-By: Claude <noreply@anthropic.com>
2026-08-05 11:08:30 +08:00

40 lines
799 B
TOML

[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "resume-agent-mvp-backend"
version = "0.1.0"
description = "Explicit-FSM resume agent MVP API"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115,<1",
"pydantic>=2.8,<3",
"openai>=1.60,<3",
"python-dotenv>=1.0,<2",
"uvicorn[standard]>=0.30,<1",
"langgraph>=1.0,<2",
"sqlalchemy>=2,<3",
"alembic>=1.13,<2",
"psycopg[binary]>=3.2,<4",
"pgvector>=0.3,<1",
"jieba>=0.42,<1",
"python-multipart>=0.0.9,<1",
"pypdf>=5,<7",
"python-docx>=1.1,<2",
"PyYAML>=6,<7",
]
[project.optional-dependencies]
test = [
"httpx>=0.27,<1",
"pytest>=8.2,<9",
]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
[tool.setuptools.packages.find]
include = ["app*"]