aboutsummaryrefslogtreecommitdiffstats
path: root/script.py
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-12-13 17:52:03 -0500
committerJesús <heckyel@hyperbola.info>2019-12-13 17:52:03 -0500
commit6bf28f116dbf5f288d1b766fff40273c8bf3f390 (patch)
tree385deff86c402a391e4d5ccc8b2ff8623e412287 /script.py
parent060f2f5af7cc9d95ec751881cc3cae5ffa4b0340 (diff)
downloadhypervideo-gui-6bf28f116dbf5f288d1b766fff40273c8bf3f390.tar.lz
hypervideo-gui-6bf28f116dbf5f288d1b766fff40273c8bf3f390.tar.xz
hypervideo-gui-6bf28f116dbf5f288d1b766fff40273c8bf3f390.zip
switch to redistributable package
Diffstat (limited to 'script.py')
-rw-r--r--script.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/script.py b/script.py
new file mode 100644
index 0000000..9bc382f
--- /dev/null
+++ b/script.py
@@ -0,0 +1,12 @@
+""" Hypervideo-GUI Script """
+
+import sys
+
+from hypervideo_gui.main_ui import *
+
+# Exec APP
+if __name__ == '__main__':
+ APP = QApplication(sys.argv)
+ APP.setStyle('Fusion')
+ ex = App()
+ sys.exit(APP.exec_())