2023-02-04 23:40:07 +00:00
|
|
|
[project]
|
|
|
|
name = "gamdl"
|
2024-05-20 07:08:19 +00:00
|
|
|
description = "A Python CLI app for downloading Apple Music songs/music videos/posts."
|
2024-04-08 09:54:51 +00:00
|
|
|
requires-python = ">=3.8"
|
2023-11-15 01:18:12 +00:00
|
|
|
authors = [{ name = "glomatico" }]
|
2024-04-08 09:54:51 +00:00
|
|
|
dependencies = [
|
|
|
|
"click",
|
2024-04-23 03:31:40 +00:00
|
|
|
"inquirerpy",
|
2024-04-08 09:54:51 +00:00
|
|
|
"m3u8",
|
2024-11-23 20:05:39 +00:00
|
|
|
"mutagen",
|
2024-06-03 04:52:54 +00:00
|
|
|
"pillow",
|
2024-04-08 09:54:51 +00:00
|
|
|
"pywidevine",
|
|
|
|
"pyyaml",
|
|
|
|
"yt-dlp",
|
|
|
|
]
|
2023-02-04 23:40:07 +00:00
|
|
|
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]
|
2023-08-27 04:07:08 +00:00
|
|
|
gamdl = "gamdl.cli:main"
|