finish app develop

This commit is contained in:
kuangji
2026-05-18 15:50:43 +08:00
parent 8f23a841f0
commit 17decab2fc
20 changed files with 2447 additions and 0 deletions

25
pyproject.toml Normal file
View File

@@ -0,0 +1,25 @@
[project]
name = "linux-format-docs-check"
version = "0.1.0"
description = "Offline-friendly DOCX compliance analysis web app for GJB438C skill documents."
readme = "plan.md"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.116.0",
"jinja2>=3.1.0",
"python-docx>=1.1.0",
"python-multipart>=0.0.9",
"pyyaml>=6.0.0",
"requests>=2.32.0",
"uvicorn>=0.35.0",
]
[dependency-groups]
dev = [
"httpx>=0.28.0",
"pytest>=8.3.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]