From 395aff5d77526d5b04f15d7b1f003754d315a299 Mon Sep 17 00:00:00 2001 From: Logykk <35679186+logykk@users.noreply.github.com> Date: Sun, 5 Dec 2021 12:41:46 +1300 Subject: [PATCH] Fix librespot install_requires --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d8c720f..11cadfd 100644 --- a/setup.py +++ b/setup.py @@ -26,6 +26,7 @@ setup( "Programming Language :: Python :: 3.9", ], packages=['zspotify'], - install_requires=['ffmpy', 'music_tag', 'Pillow', 'protobuf', 'tabulate', 'tqdm', 'git+https://github.com/kokarare1212/librespot-python'], + install_requires=['ffmpy', 'music_tag', 'Pillow', 'protobuf', 'tabulate', 'tqdm', + 'librespot @ git+https://github.com/kokarare1212/librespot-python'], include_package_data=True, )