]> git.immae.eu Git - perso/Immae/Projets/Python/MusicSampler.git/blobdiff - helpers/__init__.py
Make kivy compatible with pyinstaller
[perso/Immae/Projets/Python/MusicSampler.git] / helpers / __init__.py
index 40a96afc6ff09d58a702b76e3f7dd412fe975e26..70667fd21d01a1a11578030feef544c1a0be7e2e 100644 (file)
@@ -1 +1,11 @@
 # -*- coding: utf-8 -*-
+import sys
+import os
+
+def path():
+    if getattr(sys, 'frozen', False):
+        return sys._MEIPASS + "/"
+    else:
+        path = os.path.dirname(os.path.realpath(__file__))
+        return path + "/../"
+