dont change py2exe LONG_DESCRIPTION

This commit is contained in:
Nick Sweeting 2020-08-13 16:29:40 -04:00 committed by GitHub
parent b8924b06df
commit 5b16988d18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -37,7 +37,9 @@ exec(compile(open('youtube_dl/version.py').read(),
'youtube_dl/version.py', 'exec'))
DESCRIPTION = 'YouTube video downloader'
LONG_DESCRIPTION = open('README.md').read()
LONG_DESCRIPTION = 'Command-line program to download videos from YouTube.com and other video sites'
with open('README.md') as f:
README = f.read()
py2exe_console = [{
'script': './youtube_dl/__main__.py',
@ -103,7 +105,7 @@ setup(
name='youtube_dl',
version=__version__,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/ytdl-org/youtube-dl',
author='Ricardo Garcia',