实现 Export Service 完整生命周期:mistune AST → Document AST → HtmlExporter 渲染完整 HTML5,异步任务注册表 + 取消 + 24h 产物过期。新增 5 个 /api/exports 端点与 15 项测试;pdf/docx 与函数图像静态渲染留待后续 PR。
27 lines
548 B
TOML
27 lines
548 B
TOML
[project]
|
|
name = "notes-agent-backend"
|
|
version = "0.1.0"
|
|
description = "Notes Agent 的 FastAPI 基础壳子"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"cryptography>=45,<52",
|
|
"fastapi>=0.116,<1.0",
|
|
"httpx>=0.28,<1.0",
|
|
"jsonschema>=4.25,<5.0",
|
|
"mistune>=3.0,<4.0",
|
|
"pyyaml>=6.0,<7.0",
|
|
"referencing>=0.36,<1.0",
|
|
"sqlite-vec>=0.1.9",
|
|
"uvicorn[standard]>=0.35,<1.0",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.4,<9.0",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["."]
|
|
testpaths = ["tests"]
|