pypi_distribution.sh 207 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
# if dist and build directories exist, remove them
if [ -d dist ]; then
    rm -r dist
fi

if [ -d build ]; then
    rm -r build
fi

PYPI_BUILD=TRUE python setup.py bdist_wheel --plat-name=manylinux1_x86_64