From cead22d962c0329df9a1ca2d5bfd71acdaca1440 Mon Sep 17 00:00:00 2001 From: Panos Barlas <panagiotis.barlas@ul.ie> Date: Wed, 25 Mar 2015 13:54:43 +0000 Subject: [PATCH] init script added in this example --- .../ConfidenceIntervals/__init__.py | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 dream/KnowledgeExtraction/KEtool_examples/ConfidenceIntervals/__init__.py diff --git a/dream/KnowledgeExtraction/KEtool_examples/ConfidenceIntervals/__init__.py b/dream/KnowledgeExtraction/KEtool_examples/ConfidenceIntervals/__init__.py new file mode 100644 index 00000000..db7b2547 --- /dev/null +++ b/dream/KnowledgeExtraction/KEtool_examples/ConfidenceIntervals/__init__.py @@ -0,0 +1,24 @@ +# =========================================================================== +# Copyright 2013 University of Limerick +# +# This file is part of DREAM. +# +# DREAM is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# DREAM is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with DREAM. If not, see <http://www.gnu.org/licenses/>. +# =========================================================================== +# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages +try: + __import__('pkg_resources').declare_namespace(__name__) +except ImportError: + from pkgutil import extend_path + __path__ = extend_path(__path__, __name__) \ No newline at end of file -- 2.30.9