setup: PEP-8 fixes.
authorRogério Brito <rbrito@ime.usp.br>
Wed, 26 Jun 2013 03:54:55 +0000 (00:54 -0300)
committerRogério Brito <rbrito@ime.usp.br>
Tue, 2 Jul 2013 02:17:48 +0000 (23:17 -0300)
Signed-off-by: Rogério Brito <rbrito@ime.usp.br>
setup.py

index 42cbaf8588381f1f2a6fb9c42c523541e884f4da..3b6dc2d40f0f551630dac1007aaf72e0af819724 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -56,21 +56,22 @@ exec(compile(open('youtube_dl/version.py').read(),
              '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 = 'phihag@phihag.de',
-    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='phihag@phihag.de',
+    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",