mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-07-16 10:03:17 -07:00
basics
This commit is contained in:
parent
eb97b83ea2
commit
63b58baa01
2 changed files with 8 additions and 6 deletions
12
setup.py
12
setup.py
|
@ -33,8 +33,13 @@ py2exe_options = {
|
|||
}
|
||||
|
||||
# Get the version from youtube_dl/version.py without importing the package
|
||||
exec(compile(open('youtube_dl/version.py').read(),
|
||||
'youtube_dl/version.py', 'exec'))
|
||||
exec(
|
||||
compile(
|
||||
open('youtube_dl/version.py').read(),
|
||||
'youtube_dl/version.py',
|
||||
'exec',
|
||||
)
|
||||
)
|
||||
|
||||
DESCRIPTION = 'YouTube video downloader'
|
||||
LONG_DESCRIPTION = 'Command-line program to download videos from YouTube.com and other video sites'
|
||||
|
@ -125,9 +130,6 @@ setup(
|
|||
'Environment :: Console',
|
||||
'License :: Public Domain',
|
||||
'Programming Language :: Python',
|
||||
'Programming Language :: Python :: 2',
|
||||
'Programming Language :: Python :: 2.6',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.2',
|
||||
'Programming Language :: Python :: 3.3',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue