mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-30 11:38:30 -07:00
10 lines
266 B
Python
10 lines
266 B
Python
# this is a namespace package
|
|
__import__('pkg_resources').declare_namespace(__name__)
|
|
|
|
try:
|
|
# py2exe support (http://www.py2exe.org/index.cgi/ExeWithEggs)
|
|
import modulefinder
|
|
for p in __path__:
|
|
modulefinder.AddPackagePath(__name__, p)
|
|
except ImportError:
|
|
pass
|