mirror of
https://github.com/sprockets/sprockets.http.git
synced 2024-11-15 11:19:26 +00:00
7 lines
200 B
Python
7 lines
200 B
Python
# this is a namespace package
|
|
try:
|
|
import pkg_resources
|
|
pkg_resources.declare_namespace(__name__)
|
|
except ImportError:
|
|
import pkgutil
|
|
__path__ = pkgutil.extend_path(__path__, __name__)
|