From 489dcdee7e55cc2717793b36afea4265a8e461f2 Mon Sep 17 00:00:00 2001 From: Michael Hansen Date: Wed, 20 Apr 2022 15:39:02 -0400 Subject: [PATCH] Forgot script --- build-dist.sh | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100755 build-dist.sh diff --git a/build-dist.sh b/build-dist.sh new file mode 100755 index 0000000..5806338 --- /dev/null +++ b/build-dist.sh @@ -0,0 +1,37 @@ +#!/usr/bin/env bash +# Copyright 2022 Mycroft AI Inc. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +# ----------------------------------------------------------------------------- +# +# Creates source distributions for PyPI. +# +set -euo pipefail + +# Directory of *this* script +this_dir="$( cd "$( dirname "$0" )" && pwd )" + +dist_dir="${this_dir}/dist" +mkdir -p "${dist_dir}" + +for module_dir in opentts-abc mimic3-tts mimic3-http; do + # Kebab to snake case + module_name="$(echo "${module_dir}" | sed -e 's/-/_/g')" + + pushd "${this_dir}/${module_dir}" + python3 setup.py sdist + cp "dist/${module_name}"-*.tar.gz "${dist_dir}/" + popd +done