This commit is contained in:
RemixDev 2021-12-21 15:41:27 +01:00
parent add5158022
commit 55383332f8
No known key found for this signature in database
GPG Key ID: B33962B465BDB51C
2 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ from deemix.itemgen import generateTrackItem, \
generateArtistTopItem
from deemix.errors import LinkNotRecognized, LinkNotSupported
__version__ = "3.5.5"
__version__ = "3.5.7"
# Returns the Resolved URL, the Type and the ID
def parseLink(link):

View File

@ -7,7 +7,7 @@ README = (HERE / "README.md").read_text()
setup(
name="deemix",
version="3.5.5",
version="3.5.7",
description="A barebone deezer downloader library",
long_description=README,
long_description_content_type="text/markdown",
@ -23,7 +23,7 @@ setup(
python_requires='>=3.7',
packages=find_packages(exclude=("tests",)),
include_package_data=True,
install_requires=["click", "pycryptodomex", "mutagen", "requests", "deezer-py>=1.2.5"],
install_requires=["click", "pycryptodomex", "mutagen", "requests", "deezer-py>=1.2.8"],
extras_require={
"spotify": ["spotipy>=2.11.0"]
},