Statistics
| Branch: | Tag: | Revision:

root / snf-pithos-backend / pithos / __init__.py @ 1a5d1649

History | View | Annotate | Download (1.7 kB)

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