File size: 227 Bytes
065fee7
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

set -o pipefail
set -e

FWDIR="$(cd "`dirname "${BASH_SOURCE[0]}"`"; pwd)"
cd "$FWDIR/.."

rm -rf dist
rm -rf cloudpickle.egg-info
python setup.py sdist
python setup.py bdist_wheel --universal
twine upload dist/*