From patchwork Fri Jul 8 01:16:23 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 2575 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 B4FE524146 for ; Fri, 8 Jul 2011 01:16:26 +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 84D4CA1846C for ; Fri, 8 Jul 2011 01:16:26 +0000 (UTC) Received: by qwb8 with SMTP id 8so1046417qwb.11 for ; Thu, 07 Jul 2011 18:16:26 -0700 (PDT) Received: by 10.229.63.74 with SMTP id a10mr1105578qci.232.1310087785974; Thu, 07 Jul 2011 18:16:25 -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.48.135 with SMTP id r7cs123978qcf; Thu, 7 Jul 2011 18:16:25 -0700 (PDT) Received: by 10.217.6.195 with SMTP id y45mr133699wes.56.1310087783876; Thu, 07 Jul 2011 18:16:23 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id k64si19887993weq.83.2011.07.07.18.16.23; Thu, 07 Jul 2011 18:16:23 -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 1Qezg7-0000rm-8D for ; Fri, 08 Jul 2011 01:16:23 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id 3D4E22E8043 for ; Fri, 8 Jul 2011 01:16:23 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-scheduler X-Launchpad-Branch: ~linaro-validation/lava-scheduler/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 30 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-scheduler/trunk] Rev 30: PEP8 setup.py Message-Id: <20110708011623.32204.11747.launchpad@loganberry.canonical.com> Date: Fri, 08 Jul 2011 01:16:23 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="13376"; Instance="initZopeless config overlay" X-Launchpad-Hash: 1f0d171bbdef0e8d436c136af925ac8df271b2a4 ------------------------------------------------------------ revno: 30 tags: release-0.2 committer: Zygmunt Krynicki branch nick: lava-scheduler timestamp: Fri 2011-07-08 03:14:51 +0200 message: PEP8 setup.py modified: setup.py --- lp:lava-scheduler https://code.launchpad.net/~linaro-validation/lava-scheduler/trunk You are subscribed to branch lp:lava-scheduler. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-scheduler/trunk/+edit-subscription === modified file 'setup.py' --- setup.py 2011-07-08 01:14:27 +0000 +++ setup.py 2011-07-08 01:14:51 +0000 @@ -27,7 +27,7 @@ author_email="michael.hudson@linaro.org", packages=find_packages() + [ 'twisted/plugins', - ], + ], license="AGPL", description="LAVA Scheduler Application", entry_points=""" @@ -39,12 +39,12 @@ "lava-server >= 0.1", "twisted", "south", - ], + ], setup_requires=[ "versiontools >= 1.3.1", - ], + ], tests_require=[ "django-testscenarios", - ], + ], zip_safe=False, include_package_data=True)