31 lines
732 B
TOML
31 lines
732 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
[project]
|
|
name = 'tidal-scraper'
|
|
version = '1.0'
|
|
description = 'A simple command-line tool to download songs from tidal'
|
|
authors = [
|
|
{ name = "snailed", email="pypi@snaile.de" }
|
|
]
|
|
requires-python = ">=3.11"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3.11",
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
"Operating System :: POSIX",
|
|
"Topic :: Multimedia :: Sound/Audio",
|
|
"Natural Language :: English",
|
|
]
|
|
dependencies = [
|
|
"pycrypto",
|
|
"tqdm",
|
|
"mutagen",
|
|
"tidalapi",
|
|
]
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[project.scripts]
|
|
tidal-scraper = "tidal_scraper.cli:run"
|