-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[project]
name = "paperless-mcp-server"
version = "0.1.5"
description = "A read-only MCP server for Agentic RAG over Paperless-ngx documents."
readme = "README.md"
authors = [
{ name = "Dr. Henning Dickten" }
]
license = { text = "GPL-3.0-or-later" }
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.110.0",
"uvicorn>=0.29.0",
"mcp>=0.1.0",
"httpx>=0.27.0",
"chromadb>=1.5.2",
"google-genai>=0.5.0",
"tenacity>=8.2.3",
"loguru>=0.7.2",
"pydantic-settings>=2.2.1"
]
[dependency-groups]
dev = [
"pytest>=8.1.1",
"ruff>=0.3.4",
"pytest-asyncio>=0.23.6",
"respx>=0.21.1",
"pytest-env>=1.1.3"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = [
"api",
"core",
"semantic",
"server"
]
[tool.ruff]
line-length = 88
target-version = "py313"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
env = [
"PAPERLESS_URL=http://mock",
"PAPERLESS_TOKEN=mock",
"GEMINI_API_KEY=mock"
]