Browse Source

Move src to cura so we can use the same package for installed and source

Contributes to #41
Contributes to #42
Arjen Hiemstra 9 years ago
parent
commit
ae71c309ac

+ 2 - 2
cura.py

@@ -3,7 +3,7 @@
 # Copyright (c) 2015 Ultimaker B.V.
 # Copyright (c) 2015 Ultimaker B.V.
 # Cura is released under the terms of the AGPLv3 or higher.
 # Cura is released under the terms of the AGPLv3 or higher.
 
 
-from src.CuraApplication import CuraApplication
+import cura.CuraApplication 
 
 
-app = CuraApplication.getInstance()
+app = cura.CuraApplication.CuraApplication.getInstance()
 app.run()
 app.run()

+ 0 - 0
src/BuildVolume.py → cura/BuildVolume.py


+ 0 - 0
src/CameraAnimation.py → cura/CameraAnimation.py


+ 0 - 0
src/ConvexHullJob.py → cura/ConvexHullJob.py


+ 0 - 0
src/ConvexHullNode.py → cura/ConvexHullNode.py


+ 0 - 0
src/CuraApplication.py → cura/CuraApplication.py


+ 0 - 0
src/PlatformPhysics.py → cura/PlatformPhysics.py


+ 0 - 0
src/PlatformPhysicsOperation.py → cura/PlatformPhysicsOperation.py


+ 0 - 0
src/PrintInformation.py → cura/PrintInformation.py


+ 0 - 0
src/__init__.py → cura/__init__.py