38 lines
692 B
TOML
38 lines
692 B
TOML
[project]
|
|
name = "rag-ingestor"
|
|
version = "0.1.0"
|
|
description = "Nextcloud → Qdrant RAG ingestion service"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"fastapi>=0.115",
|
|
"uvicorn[standard]>=0.32",
|
|
"httpx>=0.28",
|
|
"pydantic>=2.10",
|
|
"pydantic-settings>=2.7",
|
|
"pymupdf>=1.25",
|
|
"python-docx>=1.1",
|
|
"ollama>=0.4",
|
|
"qdrant-client>=1.12",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.3",
|
|
"pytest-asyncio>=0.25",
|
|
"respx>=0.22",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|
|
|
|
[tool.uv]
|
|
package = true
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["app"]
|