From 86d716391cb17e889578465c878c36a6ef830766 Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Sat, 3 Jul 2021 18:32:49 +0200 Subject: [PATCH] Updated console script to 'torrentsearch'. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 816824f..99c3fdd 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( 'docopt', 'beautifulsoup4', 'termcolor', - 'colored', + 'colored', ], url='https://github.com/KevinMidboe/torrent_search', classifiers=[ @@ -26,7 +26,7 @@ setup( ], entry_points={ 'console_scripts': [ - 'search = torrentSearch.search:main', + 'torrentsearch = torrentSearch.__main__:main', ], }, )