Files
MediaManager/pyproject.toml
Maximilian Dorninger c45c9e5873 add correlation id to logging (#398)
This PR adds Correlation IDs to logs and request responses.

```
2026-02-04 12:40:32,793 - [afd825081d874d6e835b5c59a6ddb371] DEBUG - media_manager.movies - get_importable_movies(): Found 5 importable movies.
2026-02-04 12:40:32,794 - [afd825081d874d6e835b5c59a6ddb371] INFO - uvicorn.access - send(): 172.19.0.1:64094 - "GET /api/v1/movies/importable HTTP/1.1" 200
2026-02-04 12:40:47,322 - [41d30b7003fd45288c6a4bb1cfba5e7a] INFO - uvicorn.access - send(): 127.0.0.1:52964 - "GET /api/v1/health HTTP/1.1" 200
2026-02-04 12:41:17,408 - [157027ea5dde472a9e620f53739ccd53] INFO - uvicorn.access - send(): 127.0.0.1:39850 - "GET /api/v1/health HTTP/1.1" 200
```
2026-02-04 13:55:05 +01:00

49 lines
1.2 KiB
TOML

[project]
name = "mediamanager"
version = "0.1.0"
description = "Add your description here"
requires-python = ">=3.13"
dependencies = [
"bencoder>=0.2.0",
"cachetools>=6.0.0",
"fastapi[standard]>=0.115.12",
"fastapi-restful[all]>=0.6.0",
"fastapi-users[sqlalchemy]>=15.0.2",
"httpx>=0.28.1",
"httpx-oauth>=0.16.1",
"jsonschema>=4.24.0",
"patool>=4.0.1",
"psycopg[binary]>=3.2.9",
"pydantic>=2.11.5",
"pydantic-settings[toml]>=2.9.1",
"python-json-logger>=3.3.0",
"qbittorrent-api>=2025.5.0",
"requests>=2.32.3",
"sqlalchemy>=2.0.41",
"starlette>=0.49.1",
"tmdbsimple>=2.9.1",
"tvdb-v4-official>=1.1.0",
"typing-inspect>=0.9.0",
"uvicorn>=0.34.2",
"fastapi-utils>=0.8.0",
"apscheduler>=3.11.0",
"alembic>=1.16.1",
"pytest>=8.4.0",
"pillow>=11.3.0",
"sabnzbd-api>=0.1.2",
"transmission-rpc>=7.0.11",
"libtorrent>=2.0.11",
"pathvalidate>=3.3.1",
"asgi-correlation-id>=4.3.4",
]
[dependency-groups]
dev = [
"ruff",
"ty>=0.0.9",
]
[tool.setuptools.packages.find]
include = ["media_manager*"]
exclude = ["web*", "Writerside*", "metadata_relay*", "tests*"]