Multi-format shelve support (DOCX/ODT/Pages/XLSX/ODS/Numbers), the ingest→shelve terminology rename, GPU_SERVER_URL config rename, and the Agent-ModernColBERT retriever swap — see release notes.
31 lines
734 B
TOML
31 lines
734 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pagepiper"
|
|
version = "0.2.0"
|
|
description = "Self-hosted document and spreadsheet library manager with RAG chat and page-level citations"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.110",
|
|
"uvicorn[standard]>=0.29",
|
|
"python-multipart>=0.0.9",
|
|
"rank-bm25>=0.2",
|
|
"PyYAML>=6.0",
|
|
"httpx>=0.27",
|
|
"circuitforge-core[pdf,vector]>=0.19.0",
|
|
"python-docx>=1.0",
|
|
"odfpy>=1.4",
|
|
"openpyxl>=3.1",
|
|
"pylate[voyager]>=1.6",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["app*"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
asyncio_mode = "auto"
|