From: Hugh Brown Date: Fri, 11 Oct 2013 01:50:13 +0000 (-0400) Subject: Fix pep8 errors in setup.py X-Git-Tag: v0.2.23~92^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fa776c57b44bfc848fb3064990e6a7ec7f27766f;p=tools%2Fpython-jenkinsapi.git Fix pep8 errors in setup.py --- diff --git a/setup.py b/setup.py index 2e6414b..f71c6b7 100644 --- 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', ], - ) +)