FastAPI + SQLite backend with vanilla-JS web UI. Requests via Open Library / Audible / AniList metadata search (or manual entry) with per-request target library selection. Manual import flow: scan the download dir, fuzzy-match files against missing requests, review, then move+rename into the library per configurable naming templates. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
24 lines
542 B
TOML
24 lines
542 B
TOML
[project]
|
|
name = "wordarr"
|
|
version = "0.1.0"
|
|
description = "Sonarr/Radarr-style request & import manager for ebooks, comics/manga and audiobooks"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.110",
|
|
"uvicorn[standard]>=0.29",
|
|
"sqlalchemy>=2.0",
|
|
"httpx>=0.27",
|
|
"rapidfuzz>=3.6",
|
|
"pydantic>=2.6",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=8.0", "httpx>=0.27"]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["wordarr*"]
|