mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-07-30 11:39:37 -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
|
# 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',
|
||||||
|
|
2
tox.ini
2
tox.ini
|
@ -1,5 +1,5 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py26,py27,py33,py34,py35
|
envlist = py33,py34,py35
|
||||||
[testenv]
|
[testenv]
|
||||||
deps =
|
deps =
|
||||||
nose
|
nose
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue