Skip to content

Commit

Permalink
setup: PEP-8 fixes.
Browse files Browse the repository at this point in the history
Signed-off-by: Rogério Brito <[email protected]>
  • Loading branch information
Rogério Brito committed Jul 2, 2013
1 parent d055fe4 commit 652e776
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,21 +56,22 @@
'youtube_dl/version.py', 'exec'))

setup(
name = 'youtube_dl',
version = __version__,
description = 'YouTube video downloader',
long_description = 'Small command-line program to download videos from YouTube.com and other video sites.',
url = 'https://github.com/rg3/youtube-dl',
author = 'Ricardo Garcia',
maintainer = 'Philipp Hagemeister',
maintainer_email = '[email protected]',
packages = ['youtube_dl', 'youtube_dl.extractor'],
name='youtube_dl',
version=__version__,
description='YouTube video downloader',
long_description='Small command-line program to download videos from'
' YouTube.com and other video sites.',
url='https://github.com/rg3/youtube-dl',
author='Ricardo Garcia',
maintainer='Philipp Hagemeister',
maintainer_email='[email protected]',
packages=['youtube_dl', 'youtube_dl.extractor'],

# Provokes warning on most systems (why?!)
#test_suite = 'nose.collector',
#test_requires = ['nosetest'],
# test_suite = 'nose.collector',
# test_requires = ['nosetest'],

classifiers = [
classifiers=[
"Topic :: Multimedia :: Video",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
Expand Down

0 comments on commit 652e776

Please sign in to comment.