mirror of
https://github.com/glomatico/gamdl.git
synced 2025-01-22 11:18:39 +00:00
28 lines
587 B
TOML
28 lines
587 B
TOML
[project]
|
|
name = "gamdl"
|
|
description = "A Python CLI app to download Apple Music songs/music videos/albums/playlists/posts."
|
|
requires-python = ">=3.8"
|
|
authors = [{ name = "glomatico" }]
|
|
dependencies = [
|
|
"ciso8601",
|
|
"click",
|
|
"m3u8",
|
|
"tabulate",
|
|
"pywidevine",
|
|
"pyyaml",
|
|
"yt-dlp",
|
|
]
|
|
readme = "README.md"
|
|
dynamic = ["version"]
|
|
|
|
[project.urls]
|
|
homepage = "https://github.com/glomatico/gamdl"
|
|
repository = "https://github.com/glomatico/gamdl"
|
|
|
|
[build-system]
|
|
requires = ["flit_core"]
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
[project.scripts]
|
|
gamdl = "gamdl.cli:main"
|