forked from github.com/pypiserver
10 lines
157 B
Bash
Executable File
10 lines
157 B
Bash
Executable File
#! /bin/sh
|
|
#
|
|
##
|
|
|
|
my_dir=`dirname "$0"`
|
|
cd $my_dir/..
|
|
|
|
rm -r build/* dist/* || echo "no build/* or dist/* folder is found"
|
|
python3 setup.py bdist_wheel sdist
|