setup: PEP-8 fixes.
Signed-off-by: Rogério Brito <rbrito@ime.usp.br>
This commit is contained in:
parent
d055fe4cb0
commit
652e776893
1 changed files with 13 additions and 12 deletions
25
setup.py
25
setup.py
|
@ -56,21 +56,22 @@ exec(compile(open('youtube_dl/version.py').read(),
|
||||||
'youtube_dl/version.py', 'exec'))
|
'youtube_dl/version.py', 'exec'))
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = 'youtube_dl',
|
name='youtube_dl',
|
||||||
version = __version__,
|
version=__version__,
|
||||||
description = 'YouTube video downloader',
|
description='YouTube video downloader',
|
||||||
long_description = 'Small command-line program to download videos from YouTube.com and other video sites.',
|
long_description='Small command-line program to download videos from'
|
||||||
url = 'https://github.com/rg3/youtube-dl',
|
' YouTube.com and other video sites.',
|
||||||
author = 'Ricardo Garcia',
|
url='https://github.com/rg3/youtube-dl',
|
||||||
maintainer = 'Philipp Hagemeister',
|
author='Ricardo Garcia',
|
||||||
maintainer_email = 'phihag@phihag.de',
|
maintainer='Philipp Hagemeister',
|
||||||
packages = ['youtube_dl', 'youtube_dl.extractor'],
|
maintainer_email='phihag@phihag.de',
|
||||||
|
packages=['youtube_dl', 'youtube_dl.extractor'],
|
||||||
|
|
||||||
# Provokes warning on most systems (why?!)
|
# Provokes warning on most systems (why?!)
|
||||||
#test_suite = 'nose.collector',
|
# test_suite = 'nose.collector',
|
||||||
#test_requires = ['nosetest'],
|
# test_requires = ['nosetest'],
|
||||||
|
|
||||||
classifiers = [
|
classifiers=[
|
||||||
"Topic :: Multimedia :: Video",
|
"Topic :: Multimedia :: Video",
|
||||||
"Development Status :: 5 - Production/Stable",
|
"Development Status :: 5 - Production/Stable",
|
||||||
"Environment :: Console",
|
"Environment :: Console",
|
||||||
|
|
Loading…
Reference in a new issue