switch from poetry to uv
This commit is contained in:
+5
-1
@@ -3,4 +3,8 @@ env
|
||||
*.log
|
||||
__pycache__
|
||||
notes
|
||||
.DS_Store
|
||||
.DS_Store
|
||||
build
|
||||
dist
|
||||
*.spec
|
||||
*.lock
|
||||
|
||||
+19
-17
@@ -1,25 +1,27 @@
|
||||
[tool.poetry]
|
||||
[project]
|
||||
name = "free-bandcamp-downloader"
|
||||
version = "0.5.1"
|
||||
description = "Download free and name-your-price albums from Bandcamp in lossless quality"
|
||||
authors = ["7x11x13 <x7x11x13@gmail.com>"]
|
||||
license = "MIT"
|
||||
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"
|
||||
|
||||
[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]
|
||||
requires = ["poetry-core"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
requires = ["setuptools", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
Reference in New Issue
Block a user