mirror of
https://github.com/wahyd4/you-music.git
synced 2026-08-09 05:06:44 +10:00
29 lines
647 B
TOML
29 lines
647 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>=2.0.35",
|
|
"aiosqlite>=0.20.0",
|
|
"alembic>=1.17.1",
|
|
"apscheduler>=3.10.4",
|
|
]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = []
|