From patchwork Thu Jun 23 11:11:21 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 2196 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id CA52123F08 for ; Thu, 23 Jun 2011 11:12:11 +0000 (UTC) Received: from mail-qw0-f52.google.com (mail-qw0-f52.google.com [209.85.216.52]) by fiordland.canonical.com (Postfix) with ESMTP id 8210FA181F1 for ; Thu, 23 Jun 2011 11:12:11 +0000 (UTC) Received: by qwb8 with SMTP id 8so1277705qwb.11 for ; Thu, 23 Jun 2011 04:12:11 -0700 (PDT) Received: by 10.229.30.3 with SMTP id s3mr269646qcc.21.1308827530785; Thu, 23 Jun 2011 04:12:10 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.229.230.139 with SMTP id jm11cs14953qcb; Thu, 23 Jun 2011 04:12:09 -0700 (PDT) Received: by 10.216.172.69 with SMTP id s47mr1730253wel.99.1308827528698; Thu, 23 Jun 2011 04:12:08 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id p76si3513207weq.105.2011.06.23.04.12.08; Thu, 23 Jun 2011 04:12:08 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) client-ip=91.189.90.139; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) smtp.mail=bounces@canonical.com Received: from loganberry.canonical.com ([91.189.90.37]) by adelie.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1QZhpO-0003Ew-Aq for ; Thu, 23 Jun 2011 11:12:06 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id A07E52E8BA6 for ; Thu, 23 Jun 2011 11:11:21 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-dashboard-tool X-Launchpad-Branch: ~linaro-validation/lava-dashboard-tool/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 146 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-dashboard-tool/trunk] Rev 146: Fix pep8 issues in setup.py Message-Id: <20110623111121.568.28059.launchpad@loganberry.canonical.com> Date: Thu, 23 Jun 2011 11:11:21 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="13265"; Instance="initZopeless config overlay" X-Launchpad-Hash: 3f38d375c37c64eccf96e19e460148bcfb926f53 ------------------------------------------------------------ revno: 146 tags: release-0.5.1 committer: Zygmunt Krynicki branch nick: trunk timestamp: Thu 2011-06-23 13:08:53 +0200 message: Fix pep8 issues in setup.py modified: setup.py --- lp:lava-dashboard-tool https://code.launchpad.net/~linaro-validation/lava-dashboard-tool/trunk You are subscribed to branch lp:lava-dashboard-tool. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dashboard-tool/trunk/+edit-subscription === modified file 'setup.py' --- setup.py 2011-06-23 11:06:46 +0000 +++ setup.py 2011-06-23 11:08:53 +0000 @@ -22,48 +22,44 @@ setup( - name = 'launch-control-tool', - version = ":versiontools:launch_control_tool:__version__", - author = "Zygmunt Krynicki", - author_email = "zygmunt.krynicki@linaro.org", - packages = find_packages(), - description = "Command line utility for Launch Control", + name='launch-control-tool', + version=":versiontools:launch_control_tool:__version__", + author="Zygmunt Krynicki", + author_email="zygmunt.krynicki@linaro.org", + packages=find_packages(), + description="Command line utility for Launch Control", url='https://launchpad.net/launch-control-tool', test_suite='launch_control_tool.tests.test_suite', license="LGPLv3", - entry_points = """ + entry_points=""" [console_scripts] - lc-tool = launch_control_tool.main:main + lc-tool=launch_control_tool.main:main [launch_control_tool.commands] - bundles = launch_control_tool.commands:bundles - deserialize = launch_control_tool.commands:deserialize - get = launch_control_tool.commands:get - put = launch_control_tool.commands:put - server_version = launch_control_tool.commands:server_version - make_stream = launch_control_tool.commands:make_stream - backup = launch_control_tool.commands:backup - restore = launch_control_tool.commands:restore - pull = launch_control_tool.commands:pull - streams = launch_control_tool.commands:streams - data_views = launch_control_tool.commands:data_views - query_data_view = launch_control_tool.commands:query_data_view + bundles=launch_control_tool.commands:bundles + deserialize=launch_control_tool.commands:deserialize + get=launch_control_tool.commands:get + put=launch_control_tool.commands:put + server_version=launch_control_tool.commands:server_version + make_stream=launch_control_tool.commands:make_stream + backup=launch_control_tool.commands:backup + restore=launch_control_tool.commands:restore + pull=launch_control_tool.commands:pull + streams=launch_control_tool.commands:streams + data_views=launch_control_tool.commands:data_views + query_data_view=launch_control_tool.commands:query_data_view """, classifiers=[ "Development Status :: 4 - Beta", "Intended Audience :: Developers", - "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", + ("License :: OSI Approved :: GNU Library or Lesser General Public" + " License (LGPL)"), "Operating System :: OS Independent", + "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", - "Topic :: Software Development :: Testing", - ], - install_requires = [ - 'versiontools >= 1.3.1', - 'lava-tool >= 0.1' - ], - setup_requires = [ - 'versiontools >= 1.3.1', - ], - tests_require = [ - ], - zip_safe = True, -) + "Topic :: Software Development :: Testing"], + install_requires=[ + 'lava-tool >= 0.1', + 'versiontools >= 1.3.1'], + setup_requires=['versiontools >= 1.3.1'], + tests_require=[], + zip_safe=True)