Create pyproject.toml

This commit is contained in:
Rafael Moraes
2024-09-20 18:48:04 -03:00
parent ed6b619b70
commit 4ebf0a006e
+25
View File
@@ -0,0 +1,25 @@
[project]
name = "votify"
description = "A Python CLI app for downloading songs/podcasts from Spotify in Vorbis (OGG)."
requires-python = ">=3.8"
authors = [{ name = "glomatico" }]
dependencies = [
"click",
"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]
spotify-web-downloader = "votify.cli:main"