This commit is contained in:
Nick Sweeting 2020-10-19 13:14:23 +05:30 committed by GitHub
commit caecc0772b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -38,6 +38,8 @@ exec(compile(open('youtube_dl/version.py').read(),
DESCRIPTION = 'YouTube video downloader'
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,8 @@ 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',
author_email='ytdl@yt-dl.org',