Files
reader-api/pyproject.toml
T
virtus 1b1217ace2
Build and Push Reader API Image / docker (push) Successful in 26s
feat(storage): add delete_href method to remove files and clean up empty directories
chore(docker): remove MongoDB service and related configurations from local setup

feat(migrations): create ChapterMeta table and add search_name, size_bytes, mtime_epoch, lastScannedAt, review_status, and review_payload columns to SourceAsset

chore(dependencies): remove motor and pymongo from project dependencies
2026-05-03 20:57:29 +07:00

39 lines
750 B
TOML

[project]
name = "reader-api"
version = "0.1.0"
description = "Shared backend API for reader web and reader-app mobile clients"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.116.1",
"uvicorn[standard]>=0.35.0",
"sqlalchemy[asyncio]>=2.0.43",
"greenlet>=3.0.0",
"asyncpg>=0.30.0",
"python-jose[cryptography]>=3.5.0",
"google-auth>=2.40.3",
"requests>=2.32.5",
"pydantic-settings>=2.10.1",
# mod routes deps
"boto3>=1.35.0",
"httpx>=0.27.0",
"ebooklib>=0.18",
"html2text>=2024.2.26",
"python-slugify>=8.0.4",
"python-multipart>=0.0.9",
]
[dependency-groups]
dev = [
"ruff>=0.12.11",
]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.uv]
package = false