Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArjen Hiemstra <a.hiemstra@ultimaker.com>2015-05-21 16:12:05 +0300
committerArjen Hiemstra <a.hiemstra@ultimaker.com>2015-05-21 16:13:06 +0300
commit96e0faf937f10b14d7d729639045a68f2c09180f (patch)
treef736f062b20ff666b4f1f31678f6b82d76f4de1a /cura_app.py
parent8d6f72f4094ed9a83ee9175f6f5aa3e3f115e04e (diff)
Rename cura.py to cura_app.py to prevent conflicts with "cura" directory
Contributes to Ultimaker/Uranium#41
Diffstat (limited to 'cura_app.py')
-rw-r--r--cura_app.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/cura_app.py b/cura_app.py
new file mode 100644
index 0000000000..cfe99284b3
--- /dev/null
+++ b/cura_app.py
@@ -0,0 +1,9 @@
+#!/usr/bin/env python3
+
+# Copyright (c) 2015 Ultimaker B.V.
+# Cura is released under the terms of the AGPLv3 or higher.
+
+import cura.CuraApplication
+
+app = cura.CuraApplication.CuraApplication.getInstance()
+app.run()