Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / __init__.py @ a4658bbe

History | View | Annotate | Download (1.7 kB)

1 2ce0636e Kostas Papadimitriou
# Copyright 2011 GRNET S.A. All rights reserved.
2 2ce0636e Kostas Papadimitriou
#
3 2ce0636e Kostas Papadimitriou
# Redistribution and use in source and binary forms, with or
4 2ce0636e Kostas Papadimitriou
# without modification, are permitted provided that the following
5 2ce0636e Kostas Papadimitriou
# conditions are met:
6 2ce0636e Kostas Papadimitriou
#
7 2ce0636e Kostas Papadimitriou
#   1. Redistributions of source code must retain the above
8 2ce0636e Kostas Papadimitriou
#      copyright notice, this list of conditions and the following
9 2ce0636e Kostas Papadimitriou
#      disclaimer.
10 2ce0636e Kostas Papadimitriou
#
11 2ce0636e Kostas Papadimitriou
#   2. Redistributions in binary form must reproduce the above
12 2ce0636e Kostas Papadimitriou
#      copyright notice, this list of conditions and the following
13 2ce0636e Kostas Papadimitriou
#      disclaimer in the documentation and/or other materials
14 2ce0636e Kostas Papadimitriou
#      provided with the distribution.
15 2ce0636e Kostas Papadimitriou
#
16 2ce0636e Kostas Papadimitriou
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17 2ce0636e Kostas Papadimitriou
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 2ce0636e Kostas Papadimitriou
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 2ce0636e Kostas Papadimitriou
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20 2ce0636e Kostas Papadimitriou
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 2ce0636e Kostas Papadimitriou
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 2ce0636e Kostas Papadimitriou
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23 2ce0636e Kostas Papadimitriou
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24 2ce0636e Kostas Papadimitriou
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 2ce0636e Kostas Papadimitriou
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26 2ce0636e Kostas Papadimitriou
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 2ce0636e Kostas Papadimitriou
# POSSIBILITY OF SUCH DAMAGE.
28 2ce0636e Kostas Papadimitriou
#
29 2ce0636e Kostas Papadimitriou
# The views and conclusions contained in the software and
30 2ce0636e Kostas Papadimitriou
# documentation are those of the authors and should not be
31 2ce0636e Kostas Papadimitriou
# interpreted as representing official policies, either expressed
32 2ce0636e Kostas Papadimitriou
# or implied, of GRNET S.A.
33 2ce0636e Kostas Papadimitriou
34 450e0a22 Kostas Papadimitriou
# this is a namespace package
35 450e0a22 Kostas Papadimitriou
try:
36 450e0a22 Kostas Papadimitriou
    import pkg_resources
37 450e0a22 Kostas Papadimitriou
    pkg_resources.declare_namespace(__name__)
38 450e0a22 Kostas Papadimitriou
except ImportError:
39 450e0a22 Kostas Papadimitriou
    import pkgutil
40 450e0a22 Kostas Papadimitriou
    __path__ = pkgutil.extend_path(__path__, __name__)