mirror of
https://github.com/glomatico/votify.git
synced 2026-09-26 11:02:29 +02:00
29 lines
574 B
TOML
29 lines
574 B
TOML
[project]
|
|
name = "votify"
|
|
description = "A Python CLI app for downloading songs, podcasts and videos from Spotify."
|
|
requires-python = ">=3.9"
|
|
authors = [{ name = "glomatico" }]
|
|
dependencies = [
|
|
"click",
|
|
"inquirerpy",
|
|
"mutagen",
|
|
"pillow",
|
|
"protobuf",
|
|
"pybase62",
|
|
"pycryptodome",
|
|
"pywidevine",
|
|
"yt-dlp",
|
|
]
|
|
readme = "README.md"
|
|
dynamic = ["version"]
|
|
|
|
[project.urls]
|
|
repository = "https://github.com/glomatico/votify"
|
|
|
|
[build-system]
|
|
requires = ["flit_core"]
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
[project.scripts]
|
|
votify = "votify.cli:main"
|