blob: 387badb9124b6849ad1db5b421263c641c3a15f3 [file] [log] [blame]
# this is a namespace package
from __future__ import absolute_import
try:
import pkg_resources
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)