-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmake_packages.sh
More file actions
executable file
·25 lines (16 loc) · 903 Bytes
/
Copy pathmake_packages.sh
File metadata and controls
executable file
·25 lines (16 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
savReaderWriter=~/nfs/Public/savreaderwriter
cd $savReaderWriter
version=$(cat VERSION)
echo "***********************************************************************"
echo "Start running setup.py with bdist_wheel option"
echo "***********************************************************************"
python setup.py bdist_wheel
echo "***********************************************************************"
echo "Start running setup.py with sdist gztar,zip"
echo "***********************************************************************"
python setup.py sdist --formats=gztar,zip
echo "***********************************************************************"
echo "Start running setup.py with build_sphinx (documentation)"
echo "***********************************************************************"
python setup.py check build_sphinx --source-dir=savReaderWriter/documentation -v