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
No related branches found
No related tags found
No related merge requests found
......@@ -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
mkdir -p pyfaust
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
......
......@@ -27,6 +27,7 @@ about:
home: https://faust.inria.fr
license: 3-clause BSD
license_family: BSD
license_file: @LICENSE_FILEPATH@
summary: 'FAµST python toolbox'
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).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment