From 96e0faf937f10b14d7d729639045a68f2c09180f Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Thu, 21 May 2015 15:12:05 +0200 Subject: [PATCH] Rename cura.py to cura_app.py to prevent conflicts with "cura" directory Contributes to Ultimaker/Uranium#41 --- CMakeLists.txt | 2 +- cura.py => cura_app.py | 0 setup.py | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) rename cura.py => cura_app.py (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 47a054dc25..c13e3e2eea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -58,4 +58,4 @@ file(GLOB cura_plugins_SRCS plugins/*) install(DIRECTORY ${cura_plugins_SRCS} DESTINATION ${CMAKE_INSTALL_LIBDIR}/cura) file(GLOB cura_SRCS src/*) install(FILES ${cura_SRCS} DESTINATION ${PYTHON_SITE_PACKAGES_DIR}/cura) -install(FILES cura.py DESTINATION ${CMAKE_INSTALL_BINDIR}) \ No newline at end of file +install(FILES cura_app.py DESTINATION ${CMAKE_INSTALL_BINDIR}) \ No newline at end of file diff --git a/cura.py b/cura_app.py similarity index 100% rename from cura.py rename to cura_app.py diff --git a/setup.py b/setup.py index c7804d1534..cfd59c47d2 100644 --- a/setup.py +++ b/setup.py @@ -46,9 +46,9 @@ setup(name="Cura", author_email="d.braam@ultimaker.com", url="http://software.ultimaker.com/", license="GNU AFFERO GENERAL PUBLIC LICENSE (AGPL)", - scripts=["cura.py"], + scripts=["cura_app.py"], #windows=[{"script": "printer.py", "dest_name": "Cura"}], - console=[{"script": "cura.py"}], + console=[{"script": "cura_app.py"}], options={"py2exe": {"skip_archive": False, "includes": includes}}) print("Coping Cura plugins.")