From fee1a37591926d0ab87cfa9efd5b4f5e705d31e5 Mon Sep 17 00:00:00 2001 From: RemixDev Date: Sun, 16 Aug 2020 14:01:25 +0200 Subject: [PATCH] fixed cli not working while using 'deemix' from pip --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f555f57..58456c6 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ setup( install_requires=["click", "pycryptodomex", "mutagen", "requests", "spotipy>=2.11.0"], entry_points={ "console_scripts": [ - "deemix=deemix.__main__:main", + "deemix=deemix.__main__:download", ] }, )