Added scripts for installation, build and publishing

This commit is contained in:
2016-11-13 12:25:30 +01:00
parent 39813cb355
commit d0d234a807
5 changed files with 48 additions and 9 deletions

14
run_build Normal file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
#go to the directory of the script
reldir=`dirname $0`
cd $reldir
directory=`pwd`
rm -rf dist
python3 setup.py sdist
if [ $? -ne 0 ]; then
echo 'Python packager source distribution tool failed.'
exit
fi