#!/bin/bash ########################################################################### # # Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. # # THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN # WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. # # @file build.sh # # @date 29-Apr-2020 # @author P. Lucia # # @brief Packages Dialin into a standalone .whl file # ############################################################################ python3 setup.py bdist_wheel if [ $? -ne 0 ]; then echo "Error building package. Exiting..."; exit 1; fi echo "Success! Please distribute dist/dialin-x.y.z-py3-none-any.whl accordingly."