Files
you-music/backend/pyproject.toml
2025-11-07 15:38:11 +11:00

36 lines
802 B
TOML

# uv Project Configuration
# Using uv for fast Python package management
[project]
name = "youmusic-backend"
version = "1.0.0"
description = "YouMusic Backend API"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.6",
"python-multipart>=0.0.12",
"aiofiles>=24.1.0",
"aiohttp>=3.10.5",
"yt-dlp>=2025.10.22",
"mutagen>=1.47.0",
"pillow>=10.4.0",
"python-jose[cryptography]>=3.3.0",
"pydantic>=2.9.2",
"pydantic-settings>=2.5.2",
"sqlalchemy[asyncio]>=2.0.35",
"aiosqlite>=0.20.0",
"asyncpg>=0.30.0",
"psycopg[binary]>=3.2.3",
"greenlet>=3.1.1",
"alembic>=1.17.1",
"apscheduler>=3.10.4",
"httpx>=0.28.1",
]
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]