From f0fa8379926668ea951bae46c06ba55ccc083cf7 Mon Sep 17 00:00:00 2001 From: selfisekai Date: Sun, 1 Nov 2020 22:44:57 +0100 Subject: [PATCH] update descriptions --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2cceada6d..62ab46b35 100644 --- a/setup.py +++ b/setup.py @@ -36,8 +36,8 @@ py2exe_options = { exec(compile(open('haruhi_dl/version.py').read(), 'haruhi_dl/version.py', 'exec')) -DESCRIPTION = 'YouTube video downloader' -LONG_DESCRIPTION = 'Command-line program to download videos from YouTube.com and other video sites' +DESCRIPTION = 'Online video downloader' +LONG_DESCRIPTION = 'Command-line program to download videos from almost any website without DRM' py2exe_console = [{ 'script': './haruhi_dl/__main__.py', @@ -83,6 +83,7 @@ else: else: params['scripts'] = ['bin/haruhi-dl'] + class build_lazy_extractors(Command): description = 'Build the extractor lazy loading module' user_options = [] @@ -99,6 +100,7 @@ class build_lazy_extractors(Command): dry_run=self.dry_run, ) + setup( name='haruhi_dl', version=__version__,