mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-07-26 23:51:03 +00:00
basics
This commit is contained in:
parent
eb97b83ea2
commit
63b58baa01
12
setup.py
12
setup.py
|
@ -33,8 +33,13 @@ py2exe_options = {
|
||||||
}
|
}
|
||||||
|
|
||||||
# Get the version from youtube_dl/version.py without importing the package
|
# Get the version from youtube_dl/version.py without importing the package
|
||||||
exec(compile(open('youtube_dl/version.py').read(),
|
exec(
|
||||||
'youtube_dl/version.py', 'exec'))
|
compile(
|
||||||
|
open('youtube_dl/version.py').read(),
|
||||||
|
'youtube_dl/version.py',
|
||||||
|
'exec',
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
DESCRIPTION = 'YouTube video downloader'
|
DESCRIPTION = 'YouTube video downloader'
|
||||||
LONG_DESCRIPTION = 'Command-line program to download videos from YouTube.com and other video sites'
|
LONG_DESCRIPTION = 'Command-line program to download videos from YouTube.com and other video sites'
|
||||||
|
@ -125,9 +130,6 @@ setup(
|
||||||
'Environment :: Console',
|
'Environment :: Console',
|
||||||
'License :: Public Domain',
|
'License :: Public Domain',
|
||||||
'Programming Language :: Python',
|
'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',
|
||||||
'Programming Language :: Python :: 3.2',
|
'Programming Language :: Python :: 3.2',
|
||||||
'Programming Language :: Python :: 3.3',
|
'Programming Language :: Python :: 3.3',
|
||||||
|
|
Loading…
Reference in a new issue