From patchwork Thu Jun 23 11:47:13 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 2202 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 12EF123F08 for ; Thu, 23 Jun 2011 11:47:16 +0000 (UTC) Received: from mail-qy0-f180.google.com (mail-qy0-f180.google.com [209.85.216.180]) by fiordland.canonical.com (Postfix) with ESMTP id CD350A185AF for ; Thu, 23 Jun 2011 11:47:15 +0000 (UTC) Received: by qyk30 with SMTP id 30so1273736qyk.11 for ; Thu, 23 Jun 2011 04:47:15 -0700 (PDT) Received: by 10.229.137.149 with SMTP id w21mr1472824qct.59.1308829635225; Thu, 23 Jun 2011 04:47:15 -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 jm11cs15713qcb; Thu, 23 Jun 2011 04:47:14 -0700 (PDT) Received: by 10.216.15.137 with SMTP id f9mr1808865wef.62.1308829633820; Thu, 23 Jun 2011 04:47:13 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id 64si3600311wem.38.2011.06.23.04.47.13; Thu, 23 Jun 2011 04:47:13 -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 1QZiNN-0000ym-4J for ; Thu, 23 Jun 2011 11:47:13 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id 1673E2E8911 for ; Thu, 23 Jun 2011 11:47:13 +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: 7 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-scheduler/trunk] Rev 7: Use versiontools in setup.py Message-Id: <20110623114713.25791.58735.launchpad@loganberry.canonical.com> Date: Thu, 23 Jun 2011 11:47:13 -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: bcd4708d0fe3ab593b77548ee47f8bc3d7ae8635 ------------------------------------------------------------ revno: 7 committer: Zygmunt Krynicki branch nick: lava-scheduler timestamp: Thu 2011-06-23 13:45:55 +0200 message: Use versiontools in 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-06-13 04:25:04 +0000 +++ setup.py 2011-06-23 11:45:55 +0000 @@ -23,21 +23,19 @@ setup( name='lava-scheduler', - version="1.0", + version=":versiontools:lava_scheduler_app:__version__", author="Michael Hudson-Doyle", author_email="michael.hudson@linaro.org", packages=find_packages(), license="AGPL", description="LAVA Scheduler Application", - entry_points = """ - [lava_server.extensions] - scheduler = lava_scheduler_app.extension:SchedulerExtension - """, - long_description=""" - XXX + entry_points=""" + [lava_server.extensions] + scheduler = lava_scheduler_app.extension:SchedulerExtension """, install_requires=[ - "lava-server", - ], + "lava-server >= 0.1"], + setup_requires=[ + "versiontools >= 1.3.1"], zip_safe=False, include_package_data=True)