ckanext-googleanalytics/ckanext/__init__.py

18 lines
339 B
Python
Raw Normal View History

2011-02-10 14:32:19 +01:00
# this is a namespace package
try:
import pkg_resources
2019-11-22 15:59:22 +01:00
2011-02-10 14:32:19 +01:00
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
2019-11-22 15:59:22 +01:00
2011-02-10 14:32:19 +01:00
__path__ = pkgutil.extend_path(__path__, __name__)
try:
import modulefinder
except ImportError:
pass
else:
for p in __path__:
modulefinder.AddPackagePath(__name__, p)