diff options
author | WuKong <rebirthmonkey@gmail.com> | 2017-07-19 10:23:25 +0200 |
---|---|---|
committer | WuKong <rebirthmonkey@gmail.com> | 2017-07-19 10:23:25 +0200 |
commit | ffd694ebadb1d3b4e140104f9f0a81837c0e7258 (patch) | |
tree | dcd2affe2d8963ab0e0ba4b3cdc85fbd2b30b209 /moonv4/bin | |
parent | 2513cb55eeea516fec50f2fa781ce778eeae1059 (diff) |
add pip package
Change-Id: I8b4d3fa24f6ad7c7f9bb5dc93279c4a48bb0fe86
Signed-off-by: WuKong <rebirthmonkey@gmail.com>
Diffstat (limited to 'moonv4/bin')
-rw-r--r-- | moonv4/bin/build_all_pip.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/moonv4/bin/build_all_pip.sh b/moonv4/bin/build_all_pip.sh new file mode 100644 index 00000000..2b415bf0 --- /dev/null +++ b/moonv4/bin/build_all_pip.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash + + +echo Building Moon_DB +cd $MOON_HOME/moon_db +python3 setup.py sdist bdist_wheel> /tmp/moon_db.log + + +echo Building Moon_Utilities +cd $MOON_HOME/moon_utilities +python3 setup.py sdist bdist_wheel> /tmp/moon_utilities.log + + +echo Building Moon_Orchestrator +cd $MOON_HOME/moon_orchestrator +python3 setup.py sdist bdist_wheel> /tmp/moon_orchestrator.log
\ No newline at end of file |