switch from poetry to uv

This commit is contained in:
2026-04-15 19:50:59 +02:00
parent 81aae94f02
commit fd79c481e3
2 changed files with 24 additions and 18 deletions
+4
View File
@@ -4,3 +4,7 @@ env
__pycache__ __pycache__
notes notes
.DS_Store .DS_Store
build
dist
*.spec
*.lock
+19 -17
View File
@@ -1,25 +1,27 @@
[tool.poetry] [project]
name = "free-bandcamp-downloader" name = "free-bandcamp-downloader"
version = "0.5.1" version = "0.5.1"
description = "Download free and name-your-price albums from Bandcamp in lossless quality" description = "Download free and name-your-price albums from Bandcamp in lossless quality"
authors = ["7x11x13 <x7x11x13@gmail.com>"]
license = "MIT"
readme = "README.md" readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "7x11x13", email = "x7x11x13@gmail.com" }
]
requires-python = ">=3.8"
[tool.poetry.scripts] dependencies = [
"requests>=2.31.0,<3.0.0",
"beautifulsoup4>=4.12.2,<5.0.0",
"tqdm>=4.66.1,<5.0.0",
"pyrfc6266>=1.0.2,<2.0.0",
"mutagen>=1.47.0,<2.0.0",
"docopt-ng>=0.9.0,<1.0.0",
"python-guerrillamail>=0.2.0,<1.0.0"
]
[project.scripts]
bcdl-free = "free_bandcamp_downloader.__main__:main" bcdl-free = "free_bandcamp_downloader.__main__:main"
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.31.0"
beautifulsoup4 = "^4.12.2"
tqdm = "^4.66.1"
pyrfc6266 = "^1.0.2"
mutagen = "^1.47.0"
docopt-ng = "^0.9.0"
python-guerrillamail = "^0.2.0"
[build-system] [build-system]
requires = ["poetry-core"] requires = ["setuptools", "wheel"]
build-backend = "poetry.core.masonry.api" build-backend = "setuptools.build_meta"