Return-Path: X-Original-To: apmail-climate-commits-archive@minotaur.apache.org Delivered-To: apmail-climate-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 44B8D10421 for ; Mon, 16 Sep 2013 16:44:16 +0000 (UTC) Received: (qmail 80464 invoked by uid 500); 16 Sep 2013 16:44:15 -0000 Delivered-To: apmail-climate-commits-archive@climate.apache.org Received: (qmail 80383 invoked by uid 500); 16 Sep 2013 16:44:12 -0000 Mailing-List: contact commits-help@climate.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@climate.incubator.apache.org Delivered-To: mailing list commits@climate.incubator.apache.org Received: (qmail 80294 invoked by uid 99); 16 Sep 2013 16:44:10 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Sep 2013 16:44:10 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Sep 2013 16:44:09 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id A397A2388A9B; Mon, 16 Sep 2013 16:43:49 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1523728 - /incubator/climate/trunk/setup.py Date: Mon, 16 Sep 2013 16:43:49 -0000 To: commits@climate.incubator.apache.org From: joyce@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20130916164349.A397A2388A9B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: joyce Date: Mon Sep 16 16:43:49 2013 New Revision: 1523728 URL: http://svn.apache.org/r1523728 Log: CLIMATE-300 - Fix setup.py packages - Add data_source and tests packages to setup.py so everything is included when built. - Fix mixed " and ' quotes. Modified: incubator/climate/trunk/setup.py Modified: incubator/climate/trunk/setup.py URL: http://svn.apache.org/viewvc/incubator/climate/trunk/setup.py?rev=1523728&r1=1523727&r2=1523728&view=diff ============================================================================== --- incubator/climate/trunk/setup.py (original) +++ incubator/climate/trunk/setup.py Mon Sep 16 16:43:49 2013 @@ -1,12 +1,12 @@ from distutils.core import setup setup( - name="Apache Open Climate Workbench", - version="0.3-incubating-dev", - url="http://climate.incubator.apache.org/index.html", - author="Apache Open Climate Workbench", - author_email="dev@climate.incubator.apache.org", - packages=['ocw',], - license="Apache License, Version 2.0", - long_description="The Apache Open Climate Workbench provides tools for the evaluation and analysis of climate models." + name='Apache Open Climate Workbench', + version='0.3-incubating-dev', + url='http://climate.incubator.apache.org/index.html', + author='Apache Open Climate Workbench', + author_email='dev@climate.incubator.apache.org', + packages=['ocw', 'ocw.data_source', 'ocw.tests'], + license='Apache License, Version 2.0', + long_description='The Apache Open Climate Workbench provides tools for the evaluation and analysis of climate models.' )