42 lines
819 B
TOML
42 lines
819 B
TOML
[project]
|
|
name = "notebook-tools"
|
|
version = "0.1.0"
|
|
description = "FastAPI service to OCR Paperless-ngx PDFs via llama.cpp"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.115",
|
|
"uvicorn[standard]>=0.30",
|
|
"httpx>=0.27",
|
|
"pydantic>=2.7",
|
|
"pydantic-settings>=2.3",
|
|
"pymupdf>=1.24",
|
|
"pillow>=10.4",
|
|
"img2pdf>=0.5",
|
|
"tenacity>=8.3",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"pytest>=8.2",
|
|
"pytest-asyncio>=0.24",
|
|
"respx>=0.21",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "UP", "B"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/notebook_tools"]
|