Files
votify/pyproject.toml
T
2024-09-22 05:04:54 -03:00

27 lines
529 B
TOML

[project]
name = "votify"
description = "A Python CLI app for downloading songs/podcasts from Spotify."
requires-python = ">=3.8"
authors = [{ name = "glomatico" }]
dependencies = [
"click",
"inquirerpy",
"pillow",
"protobuf",
"pybase62",
"pycryptodome",
"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"