renamed src to source

This commit is contained in:
Paul M. Sutter 2024-05-22 16:15:14 -04:00
parent 4dcaf3959b
commit 4d9c5ab2c1
71 changed files with 7 additions and 3 deletions

4
.gitignore vendored
View file

@ -5,6 +5,10 @@
.mydepend
./pipeline/miscTools/*.out
build/
cmake-build-debug
examples/example_observation/*
examples/examplesimulation/*
output_*
pipeline/ramses_simulation.py
external/libsdf/libsw/Malloc.c

View file

@ -81,7 +81,7 @@ ELSE()
ENDIF()
SET(PYTHONPATH ${PYTHON_LOCAL_SITE_PACKAGE})
configure_exec(${CMAKE_SOURCE_DIR}/python_tools/pipeline_source/prepareInputs.in.py
configure_exec(${CMAKE_SOURCE_DIR}/python_src/pipeline_source/prepareInputs.in.py
${CMAKE_BINARY_DIR}/pipeline prepareInputs.py)
#configure_exec(${CMAKE_SOURCE_DIR}/python_tools/pipeline_source/applyMaskToMock.in.py
#${CMAKE_BINARY_DIR}/pipeline applyMaskToMock.py)

View file

@ -208,8 +208,8 @@ vide_extension = CMakeExtension(name="vide")
setup(name='vide',
version='2.0',
packages=find_packages('python_tools'),
package_dir={'': 'python_tools'},
packages=find_packages('python_src'),
package_dir={'': 'python_src'},
setup_requires=['cython','setuptools','healpy','argparse','scipy','astropy','extension-helpers','netCDF4'],
install_requires=['argparse','scipy','astropy','extension-helpers','netCDF4','healpy'],
ext_modules=[vide_extension],