CLIMATE-520 - Add ESGF module to setup.py
Project: http://git-wip-us.apache.org/repos/asf/climate/repo Commit: http://git-wip-us.apache.org/repos/asf/climate/commit/3b30be75 Tree: http://git-wip-us.apache.org/repos/asf/climate/tree/3b30be75 Diff: http://git-wip-us.apache.org/repos/asf/climate/diff/3b30be75 Branch: refs/heads/master Commit: 3b30be75530baaa0a69d3686b527a402795169ff Parents: 79464c7 Author: Michael Joyce <[email protected]> Authored: Mon Sep 15 08:12:01 2014 -0700 Committer: Michael Joyce <[email protected]> Committed: Sun Oct 19 14:18:50 2014 -0700 ---------------------------------------------------------------------- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/climate/blob/3b30be75/setup.py ---------------------------------------------------------------------- diff --git a/setup.py b/setup.py index edceca9..3874385 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ # specific language governing permissions and limitations # under the License. -from distutils.core import setup +from setuptools import setup setup( name='Apache Open Climate Workbench', @@ -23,7 +23,7 @@ setup( url='http://climate.apache.org/index.html', author='Apache Open Climate Workbench', author_email='[email protected]', - packages=['ocw', 'ocw.data_source', 'ocw.tests'], + packages=['ocw', 'ocw.data_source', 'ocw.tests', 'ocw.esgf'], license='Apache License, Version 2.0', long_description='The Apache Open Climate Workbench provides tools for the evaluation and analysis of climate models.' )
