pagepiper/pyproject.toml

31 lines
713 B
TOML

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pagepiper"
version = "0.1.0"
description = "Self-hosted PDF 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"