From patchwork Thu Jun 23 18:37:17 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 2283 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 BDF1123F7C for ; Thu, 23 Jun 2011 18:37:20 +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 8DE4CA18489 for ; Thu, 23 Jun 2011 18:37:20 +0000 (UTC) Received: by qwb8 with SMTP id 8so1569629qwb.11 for ; Thu, 23 Jun 2011 11:37:20 -0700 (PDT) Received: by 10.229.117.95 with SMTP id p31mr1863726qcq.97.1308854239987; Thu, 23 Jun 2011 11:37:19 -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 jm11cs27384qcb; Thu, 23 Jun 2011 11:37:19 -0700 (PDT) Received: by 10.227.196.208 with SMTP id eh16mr2263961wbb.37.1308854238786; Thu, 23 Jun 2011 11:37:18 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id fs8si4392997wbb.103.2011.06.23.11.37.18; Thu, 23 Jun 2011 11:37:18 -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 1QZomD-0008Im-HV for ; Thu, 23 Jun 2011 18:37:17 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id 7DF8C2E8911 for ; Thu, 23 Jun 2011 18:37:17 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-dashboard X-Launchpad-Branch: ~linaro-validation/lava-dashboard/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 227 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-dashboard/trunk] Rev 227: PEP8 issues in setup.py Message-Id: <20110623183717.21265.65542.launchpad@loganberry.canonical.com> Date: Thu, 23 Jun 2011 18:37:17 -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: 64ecde416bfca9d39d4d8fb779f0a8573516d691 ------------------------------------------------------------ revno: 227 committer: Zygmunt Krynicki branch nick: trunk timestamp: Thu 2011-06-23 12:04:22 +0200 message: PEP8 issues in setup.py modified: setup.py --- lp:lava-dashboard https://code.launchpad.net/~linaro-validation/lava-dashboard/trunk You are subscribed to branch lp:lava-dashboard. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dashboard/trunk/+edit-subscription === modified file 'setup.py' --- setup.py 2011-06-23 10:03:56 +0000 +++ setup.py 2011-06-23 10:04:22 +0000 @@ -22,19 +22,19 @@ setup( - name = 'lava-dashboard', - version = ":versiontools:dashboard_app:__version__", - author = "Zygmunt Krynicki", - author_email = "zygmunt.krynicki@linaro.org", - packages = find_packages(), - license = "AGPL", - description = "Validation Dashboard for LAVA Server", - long_description = """ + name='lava-dashboard', + version=":versiontools:dashboard_app:__version__", + author="Zygmunt Krynicki", + author_email="zygmunt.krynicki@linaro.org", + packages=find_packages(), + license="AGPL", + description="Validation Dashboard for LAVA Server", + long_description=""" Validation Dashboard is a repository for test results. """, url='https://launchpad.net/lava-dashboard', #test_suite='launch_control.tests.test_suite', - entry_points = """ + entry_points=""" [lava_server.extensions] dashboard=dashboard_app.extension:DashboardExtension """, @@ -47,7 +47,7 @@ "Programming Language :: Python :: 2.6", "Topic :: Software Development :: Testing", ], - install_requires = [ + install_requires=[ 'Django >= 1.2', 'linaro-django-pagination >= 2.0', 'django-restricted-resource >= 0.2.5', @@ -59,10 +59,10 @@ 'south >= 0.7', 'versiontools >= 1.1', ], - setup_requires = [ + setup_requires=[ 'versiontools >= 1.3.1', ], - tests_require = [ + tests_require=[ 'django-testscenarios >= 0.6', ], zip_safe=False,