summaryrefslogtreecommitdiff
path: root/stsci/__init__.py
blob: a5133cc00fbc78bf1f6719fa26b0f33b35ace5d0 (plain) (blame)
1
2
3
4
5
6
7
8
# This is a special __init__.py required to place sample_package under the
# stsci namespace package.  There should be no other code in this module.
try:
    from pkg_resources import declare_namespace
    declare_namespace(__name__)
except ImportError:
    from pkgutil import extend_path
    __path__ = extend_path(__path__, __name__)