diff options
author | Edoardo Pasca <edo.paskino@gmail.com> | 2018-01-25 11:47:16 +0000 |
---|---|---|
committer | Edoardo Pasca <edo.paskino@gmail.com> | 2018-01-25 11:47:16 +0000 |
commit | d2e72727c9b9b3478fea5ed6b6be549eec70c034 (patch) | |
tree | 0cf42a267e968ecb1dfc3285180301d6d4dec386 /src/Python/conda-recipe | |
parent | 132f0d71950fdf8abf7da55593b30d8bc19c7ff6 (diff) | |
download | regularization-d2e72727c9b9b3478fea5ed6b6be549eec70c034.tar.gz regularization-d2e72727c9b9b3478fea5ed6b6be549eec70c034.tar.bz2 regularization-d2e72727c9b9b3478fea5ed6b6be549eec70c034.tar.xz regularization-d2e72727c9b9b3478fea5ed6b6be549eec70c034.zip |
removed src dir
Diffstat (limited to 'src/Python/conda-recipe')
-rw-r--r-- | src/Python/conda-recipe/bld.bat | 14 | ||||
-rw-r--r-- | src/Python/conda-recipe/build.sh | 14 | ||||
-rw-r--r-- | src/Python/conda-recipe/meta.yaml | 30 |
3 files changed, 0 insertions, 58 deletions
diff --git a/src/Python/conda-recipe/bld.bat b/src/Python/conda-recipe/bld.bat deleted file mode 100644 index 69491de..0000000 --- a/src/Python/conda-recipe/bld.bat +++ /dev/null @@ -1,14 +0,0 @@ -IF NOT DEFINED CIL_VERSION ( -ECHO CIL_VERSION Not Defined. -exit 1 -) - -mkdir "%SRC_DIR%\ccpi" -xcopy /e "%RECIPE_DIR%\..\.." "%SRC_DIR%\ccpi" - -cd %SRC_DIR%\ccpi\Python - -%PYTHON% setup.py build_ext -if errorlevel 1 exit 1 -%PYTHON% setup.py install -if errorlevel 1 exit 1 diff --git a/src/Python/conda-recipe/build.sh b/src/Python/conda-recipe/build.sh deleted file mode 100644 index 855047f..0000000 --- a/src/Python/conda-recipe/build.sh +++ /dev/null @@ -1,14 +0,0 @@ - -if [ -z "$CIL_VERSION" ]; then - echo "Need to set CIL_VERSION" - exit 1 -fi -mkdir "$SRC_DIR/ccpi" -cp -r "$RECIPE_DIR/../.." "$SRC_DIR/ccpi" - -cd $SRC_DIR/ccpi/Python - -$PYTHON setup.py build_ext -$PYTHON setup.py install - - diff --git a/src/Python/conda-recipe/meta.yaml b/src/Python/conda-recipe/meta.yaml deleted file mode 100644 index 9ef9156..0000000 --- a/src/Python/conda-recipe/meta.yaml +++ /dev/null @@ -1,30 +0,0 @@ -package: - name: ccpi-regularizers - version: {{ environ['CIL_VERSION'] }} - - -build: - preserve_egg_dir: False - script_env: - - CIL_VERSION -# number: 0 - -requirements: - build: - - python - - numpy - - setuptools - - boost ==1.65 - - boost-cpp ==1.65 - - cython - - run: - - python - - numpy - - boost ==1.64 - - -about: - home: http://www.ccpi.ac.uk - license: BSD license - summary: 'CCPi Core Imaging Library Quantification Toolbox' |