18 lines
644 B
TOML
18 lines
644 B
TOML
[project]
|
|
name = "fabledcurator"
|
|
version = "0.1.0"
|
|
description = "FabledSword family — self-hosted media curation, gallery, ML tagging, and subscription-driven downloads."
|
|
requires-python = ">=3.14"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["backend*"]
|
|
|
|
[tool.pytest.ini_options]
|
|
# The fast backend job runs `-m "not integration"`; the dedicated CI
|
|
# `integration` job (pgvector Postgres + Redis service containers) runs
|
|
# `-m integration`. Both also runnable locally via docker-compose.
|
|
markers = [
|
|
"integration: tests that require a real Postgres/Redis. Run by the CI integration job and locally via docker-compose.",
|
|
]
|