blob: eac310cf02cb18d353359c2cad20ead62de21901 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
set -e
cd $(dirname -- "$0")
PYTHON=${PYTHON:-python3}
rm -rf ./build
$PYTHON setup.py \
build --build-base build \
egg_info --egg-base build \
bdist_wheel --dist-dir build
|