Mentions légales du service

Skip to content
Snippets Groups Projects
Commit d0dbb82f authored by hhakim's avatar hhakim
Browse files

Add explicitly the license file in conda package.

It was already there but now the standard way.
parent 84441c1b
Branches
Tags
No related merge requests found
...@@ -102,6 +102,12 @@ PYFAUST_VERSION=$(echo $WHL_URL | sed -e 's/.*pyfaust-\([[:digit:].]\{1,\}\)-.*/ ...@@ -102,6 +102,12 @@ PYFAUST_VERSION=$(echo $WHL_URL | sed -e 's/.*pyfaust-\([[:digit:].]\{1,\}\)-.*/
#### SECOND STEP: generate the meta.yaml file for conda pkg building using the meta.yaml.in model file #### SECOND STEP: generate the meta.yaml file for conda pkg building using the meta.yaml.in model file
mkdir -p pyfaust mkdir -p pyfaust
sed -e "s%@PYFAUST_VERSION@%$PYFAUST_VERSION%;s%@WHL_URL@%$WHL_URL%" $META_YAML_PATH > pyfaust/meta.yaml sed -e "s%@PYFAUST_VERSION@%$PYFAUST_VERSION%;s%@WHL_URL@%$WHL_URL%" $META_YAML_PATH > pyfaust/meta.yaml
if [[ "$SYSTEM" = win ]]
then
sed -i 's%@LICENSE_FILEPATH@%..\\..\\..\\..\\license.txt%' pyfaust/meta.yaml
else
sed -i 's%@LICENSE_FILEPATH@%../../../../license.txt%' pyfaust/meta.yaml
fi
#### THIRD STEP: build the package using conda #### THIRD STEP: build the package using conda
......
...@@ -27,6 +27,7 @@ about: ...@@ -27,6 +27,7 @@ about:
home: https://faust.inria.fr home: https://faust.inria.fr
license: 3-clause BSD license: 3-clause BSD
license_family: BSD license_family: BSD
license_file: @LICENSE_FILEPATH@
summary: 'FAµST python toolbox' summary: 'FAµST python toolbox'
description: | description: |
The FAµST toolbox provides algorithms and data structures to decompose a given dense matrix into a product of sparse matrices in order to reduce its computational complexity (both for storage and manipulation). The FAµST toolbox provides algorithms and data structures to decompose a given dense matrix into a product of sparse matrices in order to reduce its computational complexity (both for storage and manipulation).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment