mirror of
https://github.com/wahyd4/you-music.git
synced 2026-08-08 20:59:47 +10:00
29 lines
646 B
TOML
29 lines
646 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==2024.10.7",
|
|
"mutagen==1.47.0",
|
|
"pillow==10.4.0",
|
|
"python-jose[cryptography]==3.3.0",
|
|
"pydantic==2.9.2",
|
|
"pydantic-settings==2.5.2",
|
|
"sqlalchemy==2.0.35",
|
|
"aiosqlite==0.20.0",
|
|
"alembic==1.17.1",
|
|
"apscheduler==3.10.4",
|
|
]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = []
|