From 9e3285686ef229dcc5128aaa2419b023bdc3b9bf Mon Sep 17 00:00:00 2001 From: joshrmcdaniel <80354972+joshrmcdaniel@users.noreply.github.com> Date: Sun, 12 May 2024 10:46:57 -0500 Subject: [PATCH] toml --- pyproject.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..f4ad425 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,23 @@ +[build-system] +requires = ["setuptools >= 61.0", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "spotify_to_tidal" +version = "0.0.1-dev" +requires-python = ">= 3.10" + +dependencies = [ + "spotipy~=2.21", + "tidalapi~=0.7", + "pyyaml~=6.0", + "tqdm~=4.64", +] + + +[tools.setuptools.packages."spotify_to_tidal"] +where = "src" +include = "spotify_to_tidal*" + +[project.scripts] +spotify_to_tidal = "spotify_to_tidal.__main__:main"