ckanext-googleanalytics/ckanext/googleanalytics/__init__.py

10 lines
202 B
Python
Raw Normal View History

# this is a namespace package
try:
import pkg_resources
2019-11-22 15:59:22 +01:00
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
2019-11-22 15:59:22 +01:00
__path__ = pkgutil.extend_path(__path__, __name__)