pypi_distribution.sh 294 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

# 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