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/16 18:43:47 UTC

svn commit: r1523727 - /incubator/climate/trunk/setup.py

Author: joyce
Date: Mon Sep 16 16:43:46 2013
New Revision: 1523727

URL: http://svn.apache.org/r1523727
Log:
CLIMATE-300 - Add setup.py

Added:
    incubator/climate/trunk/setup.py

Added: incubator/climate/trunk/setup.py
URL: http://svn.apache.org/viewvc/incubator/climate/trunk/setup.py?rev=1523727&view=auto
==============================================================================
--- incubator/climate/trunk/setup.py (added)
+++ incubator/climate/trunk/setup.py Mon Sep 16 16:43:46 2013
@@ -0,0 +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."
+)