summaryrefslogtreecommitdiff
path: root/package/windows/bootstrap.py
diff options
context:
space:
mode:
Diffstat (limited to 'package/windows/bootstrap.py')
-rw-r--r--package/windows/bootstrap.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/package/windows/bootstrap.py b/package/windows/bootstrap.py
new file mode 100644
index 0000000..3c6e887
--- /dev/null
+++ b/package/windows/bootstrap.py
@@ -0,0 +1,16 @@
+# coding: utf-8
+
+import logging
+
+logging.basicConfig()
+
+# Import here for static analysis to work
+import silx.app.view.main
+import silx.app.convert
+import silx.app.test_
+
+from silx.__main__ import main
+
+if __name__ == "__main__":
+ main()
+