diff --git a/CMakeLists.txt b/CMakeLists.txt index 25fb0eb..5f166bb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -81,8 +81,8 @@ ELSE() ENDIF() SET(PYTHONPATH ${PYTHON_LOCAL_SITE_PACKAGE}) -configure_exec(${CMAKE_SOURCE_DIR}/python_source/pipeline_source/prepareInputs.in.py -${CMAKE_BINARY_DIR}/pipeline prepareInputs.py) +configure_exec(${CMAKE_SOURCE_DIR}/python_source/pipeline/vide_prepare_simulation +${CMAKE_BINARY_DIR}/pipeline vide_prepare_simulation) #configure_exec(${CMAKE_SOURCE_DIR}/python_tools/pipeline_source/applyMaskToMock.in.py #${CMAKE_BINARY_DIR}/pipeline applyMaskToMock.py) #configure_exec(${CMAKE_SOURCE_DIR}/python_tools/pipeline_source/buildSkyProjections.in.py diff --git a/python_source/vide_pipeline/__init__.py b/python_source/pipeline/__init__.py similarity index 100% rename from python_source/vide_pipeline/__init__.py rename to python_source/pipeline/__init__.py diff --git a/python_source/vide_pipeline/__main__.py b/python_source/pipeline/__main__.py similarity index 100% rename from python_source/vide_pipeline/__main__.py rename to python_source/pipeline/__main__.py diff --git a/python_source/pipeline_source/defaults.py b/python_source/pipeline/defaults.py similarity index 100% rename from python_source/pipeline_source/defaults.py rename to python_source/pipeline/defaults.py diff --git a/python_source/pipeline_source/prepareInputs.in.py b/python_source/pipeline/vide_prepare_simulation similarity index 100% rename from python_source/pipeline_source/prepareInputs.in.py rename to python_source/pipeline/vide_prepare_simulation diff --git a/setup.py b/setup.py index 00c7ec7..966a570 100644 --- a/setup.py +++ b/setup.py @@ -181,7 +181,7 @@ class BuildCMakeExt(build_ext): shutil.rmtree(target_dir, ignore_errors=True) shutil.move(f"{PYTHON_bin_package}/void_python_tools/bin", target_dir) - shutil.copy(f"{self.build_temp}/pipeline/prepareInputs.py", f"{self.build_temp}/vide_prepare_simulation") + shutil.copy(f"{self.build_temp}/pipeline/vide_prepare_simulation", f"{self.build_temp}/vide_prepare_simulation") class VideScripts(build_scripts):