Fix librespot install_requires

This commit is contained in:
Logykk 2021-12-05 12:41:46 +13:00 committed by GitHub
parent 606125db07
commit 395aff5d77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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,
)