-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
38 lines (35 loc) · 1.28 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
[project]
name = "famstack"
version = "0.2.0"
description = "Self-hosted family server stack for Apple Silicon"
requires-python = ">=3.9"
# The CLI itself depends only on the stdlib — stacklet containers carry
# their own runtime deps. These extras are for host-side tooling: tests
# and hook scripts that import bot modules directly.
[project.optional-dependencies]
test = [
# pytest 8.x still supports Python 3.9 (per AGENT.md runtime target);
# pytest 9+ requires 3.10+. Revisit when we drop 3.9 compat.
"pytest>=8,<9",
"pytest-asyncio>=0.21",
"pytest-httpserver>=1.0",
# Bot runtime deps — tests import the archivist and log into Matrix
# as test users, so the bot's own libraries must be installed here.
"matrix-nio>=0.25",
"aiohttp>=3.8",
"Pillow>=10",
"loguru",
"pyyaml",
"markdown",
"pypdf>=4.0",
# PDF page rendering for vision-aware classifiers (scanned PDFs).
"pypdfium2>=4.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
# Pipeline-quality evals (real model, real Paperless, slow) are opt-in via
# `tests/integration/stacktests eval` — never collected by `pytest tests/`.
norecursedirs = ["tests/integration/eval"]
markers = [
"v2_only: tests for the lifecycle v2 refactor (will fail until migration is complete)",
]