You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@climate.apache.org by jo...@apache.org on 2013/09/18 16:16:49 UTC

svn commit: r1524431 - /incubator/climate/trunk/obs4MIPs/setup.py

Author: joyce
Date: Wed Sep 18 14:16:48 2013
New Revision: 1524431

URL: http://svn.apache.org/r1524431
Log:
CLIMATE-305 - Update obs4MIPs setup.py

Modified:
    incubator/climate/trunk/obs4MIPs/setup.py

Modified: incubator/climate/trunk/obs4MIPs/setup.py
URL: http://svn.apache.org/viewvc/incubator/climate/trunk/obs4MIPs/setup.py?rev=1524431&r1=1524430&r2=1524431&view=diff
==============================================================================
--- incubator/climate/trunk/obs4MIPs/setup.py (original)
+++ incubator/climate/trunk/obs4MIPs/setup.py Wed Sep 18 14:16:48 2013
@@ -1,5 +1,3 @@
-#!/usr/bin/env python
-#
 # Licensed to the Apache Software Foundation (ASF) under one
 # or more contributor license agreements.  See the NOTICE file
 # distributed with this work for additional information
@@ -19,13 +17,14 @@
 
 from distutils.core import setup
 
-setup(name='obs4MIPS',
-      version='1.0',
-      description='Convert observation data to CMIP5s',
-      author='Denis Nadeau',
-      author_email='denis.nadeau@nasa.gov',
-      url='http://nccs.nasa.gov',
-      py_modules=['obs4MIPs_process'],
-      packages=['','factory', 'Toolbox'],
-      package_data={'': ['Tables/*','examples/ECMWF/Y2013/*','examples/TRMM/v7/*']},
-     )
+setup(
+    name='Apache Open CLimate Workbench obs4MIPS',
+    version='1.0',
+    description='Convert observation data to CMIP5s',
+    author='Apache Open Climate Workbench',
+    author_email='dev@climate.incubator.apache.org',
+    url='http://climate.incubator.apache.org/index.html',
+    py_modules=['obs4MIPs_process'],
+    packages=['','factory', 'Toolbox'],
+    package_data={'': ['Tables/*','examples/ECMWF/Y2013/*','examples/TRMM/v7/*']},
+)