Fix pep8 errors in setup.py
authorHugh Brown <hbrown@amplify.com>
Fri, 11 Oct 2013 01:50:13 +0000 (21:50 -0400)
committerHugh Brown <hbrown@amplify.com>
Fri, 11 Oct 2013 01:50:13 +0000 (21:50 -0400)
setup.py

index 2e6414b56c45e76449000e4ba7bb4abd01997fcb..f71c6b76e3b4058f7bd6df8389798e417339eaec 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -15,26 +15,27 @@ except IOError, _:
     DESCRIPTION = SHORT_DESCRIPTION
 
 GLOBAL_ENTRY_POINTS = {
-        "console_scripts": ["jenkins_invoke=jenkinsapi.command_line.jenkins_invoke:main"]
-        }
+    "console_scripts": ["jenkins_invoke=jenkinsapi.command_line.jenkins_invoke:main"]
+}
 
-setup(name=PROJECT_NAME.lower(),
-      version=REVISION,
-      author=PROJECT_AUTHORS,
-      author_email=PROJECT_EMAILS,
-      packages=['jenkinsapi', 'jenkinsapi.utils', 'jenkinsapi.command_line', 'jenkinsapi_tests'],
-      zip_safe=True,
-      include_package_data=False,
-      setup_requires=['nose'],
-      install_requires=['requests>=1.2.3', 'pytz>=2013b'],
-      test_suite='jenkinsapi_tests',
-      tests_require=['mock', 'coverage'],
-      entry_points=GLOBAL_ENTRY_POINTS,
-      url=PROJECT_URL,
-      description=SHORT_DESCRIPTION,
-      long_description=DESCRIPTION,
-      license='MIT',
-      classifiers = [
+setup(
+    name=PROJECT_NAME.lower(),
+    version=REVISION,
+    author=PROJECT_AUTHORS,
+    author_email=PROJECT_EMAILS,
+    packages=['jenkinsapi', 'jenkinsapi.utils', 'jenkinsapi.command_line', 'jenkinsapi_tests'],
+    zip_safe=True,
+    include_package_data=False,
+    setup_requires=['nose'],
+    install_requires=['requests>=1.2.3', 'pytz>=2013b'],
+    test_suite='jenkinsapi_tests',
+    tests_require=['mock', 'coverage'],
+    entry_points=GLOBAL_ENTRY_POINTS,
+    url=PROJECT_URL,
+    description=SHORT_DESCRIPTION,
+    long_description=DESCRIPTION,
+    license='MIT',
+    classifiers=[
         'Development Status :: 4 - Beta',
         'Environment :: Console',
         'Intended Audience :: Developers',
@@ -44,4 +45,4 @@ setup(name=PROJECT_NAME.lower(),
         'Programming Language :: Python :: 2.7',
         'Topic :: Software Development :: Testing',
     ],
-      )
+)