mirror of
https://github.com/kennethreitz-archive/django-piston-xauth.git
synced 2026-06-18 14:30:57 +00:00
16 lines
383 B
Python
16 lines
383 B
Python
try:
|
|
import pkg_resources
|
|
pkg_resources.declare_namespace(__name__)
|
|
except ImportError:
|
|
# don't prevent use of paste if pkg_resources isn't installed
|
|
from pkgutil import extend_path
|
|
__path__ = extend_path(__path__, __name__)
|
|
|
|
try:
|
|
import modulefinder
|
|
except ImportError:
|
|
pass
|
|
else:
|
|
for p in __path__:
|
|
modulefinder.AddPackagePath(__name__, p)
|