migrate to uv

This commit is contained in:
hhh
2025-01-20 23:59:29 +02:00
parent bb0bb53620
commit e509901564
2 changed files with 968 additions and 25 deletions

View File

@@ -1,30 +1,26 @@
[tool.poetry]
[project]
name = "anymusicbot"
version = "0.1.0"
description = ""
authors = ["BarsTiger"]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"wheel>=0.43.0,<0.44",
"setuptools>=72.1.0,<73",
"aiogram>=3.1.1,<4",
"rich>=13.6.0,<14",
"shazamio",
"sqlitedict>=2.1.0,<3",
"spotipy>=2.23.0,<3",
"attrs>=23.1.0,<24",
"ytmusicapi>=1.8.0,<2",
"pydub>=0.25.1,<0.26",
"aiohttp>=3.8.6,<4",
"nest-asyncio>=1.5.8,<2",
"icecream>=2.1.3,<3",
"m3u8>=5.1.0,<6",
"cryptography>=43.0.0,<44",
"pytubefix>=8.2.0,<9",
]
[tool.poetry.dependencies]
wheel = "^0.43.0"
setuptools = "^72.1.0"
python = "^3.11"
aiogram = "^3.1.1"
rich = "^13.6.0"
[tool.uv.sources]
shazamio = { path = "lib/ShazamIO" }
sqlitedict = "^2.1.0"
spotipy = "^2.23.0"
attrs = "^23.1.0"
ytmusicapi = "^1.8.0"
pydub = "^0.25.1"
aiohttp = "^3.8.6"
nest-asyncio = "^1.5.8"
icecream = "^2.1.3"
m3u8 = "^5.1.0"
cryptography = "^43.0.0"
pytubefix = "^8.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"