27 lines
677 B
TOML
27 lines
677 B
TOML
[project]
|
|
name = "free-bandcamp-downloader"
|
|
version = "0.5.1"
|
|
description = "Download free and name-your-price albums from Bandcamp in lossless quality"
|
|
readme = "README.md"
|
|
license = { text = "MIT" }
|
|
authors = [
|
|
{ name = "7x11x13", email = "x7x11x13@gmail.com" }
|
|
]
|
|
requires-python = ">=3.8"
|
|
|
|
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",
|
|
"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"
|
|
|
|
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|