simplify packages insertion

This commit is contained in:
ThomasV 2015-01-27 13:50:02 +01:00
parent fd8a931608
commit 56e80566f9
1 changed files with 6 additions and 14 deletions

View File

@ -26,23 +26,15 @@ import sys
import time
import traceback
is_local = False
is_android = False
if sys.platform == 'darwin':
is_bundle = getattr(sys, 'frozen') == "macosx_app"
if is_bundle:
sys.path.insert(0, os.getcwd() + "/lib/python2.7/packages")
else:
is_bundle = getattr(sys, 'frozen', False)
is_local = not is_bundle and os.path.dirname(os.path.realpath(__file__)) == os.getcwd()
is_android = 'ANDROID_DATA' in os.environ
if is_local:
sys.path.append('packages')
is_bundle = getattr(sys, 'frozen', False)
is_local = not is_bundle and os.path.dirname(os.path.realpath(__file__)) == os.getcwd()
is_android = 'ANDROID_DATA' in os.environ
if is_local:
sys.path.insert(0, 'packages')
elif is_bundle and sys.platform=='darwin':
sys.path.insert(0, os.getcwd() + "/lib/python2.7/packages")
import __builtin__
__builtin__.use_local_modules = is_local or is_android