From 4ebf0a006e36b84b4da175eb4dc6e13d96a2b666 Mon Sep 17 00:00:00 2001 From: Rafael Moraes <50295204+glomatico@users.noreply.github.com> Date: Fri, 20 Sep 2024 18:48:04 -0300 Subject: [PATCH] Create pyproject.toml --- pyproject.toml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ed2ca2e --- /dev/null +++ b/pyproject.toml @@ -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"