pagepiper/pyproject.toml
pyr0ball afdc211813 chore: bump version to 0.2.0
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.
2026-07-10 19:38:24 -07:00

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"