This commit is contained in:
cool.gitter.not.me.again.duh
2025-05-31 16:09:29 -06:00
parent 089cb3dc5a
commit 42411b7ffa
5 changed files with 292 additions and 694 deletions

View File

@@ -5,9 +5,9 @@ readmed = README.read()
README.close()
setup(
name = "deezspot",
version = "1.1",
description = "Downloads songs, albums or playlists from deezer and spotify (clone from https://pypi.org/project/deezloader/)",
name = "deezspot-spotizerr",
version = "1.2.0",
description = "Spotizerr's implementation of deezspot",
long_description = readmed,
long_description_content_type = "text/markdown",
license = "GNU Affero General Public License v3",
@@ -18,8 +18,10 @@ setup(
packages = [
"deezspot",
"deezspot/models", "deezspot/spotloader",
"deezspot/deezloader", "deezspot/libutils"
"deezspot.models",
"deezspot.spotloader",
"deezspot.deezloader",
"deezspot.libutils"
],
install_requires = [
@@ -27,6 +29,6 @@ setup(
"spotipy", "tqdm", "fastapi",
"uvicorn[standard]",
"spotipy-anon",
"librespot"
"librespot-spotizerr"
],
)