music-kraken-core/build/build.sh

18 lines
353 B
Bash
Raw Normal View History

2022-11-15 00:22:25 +00:00
# https://packaging.python.org/en/latest/tutorials/packaging-projects/
cd ../src
cp ../README.md README.md
echo "building......"
python3 -m pip install --upgrade build
python3 -m build
echo "cleaning up......."
rm README.md
cd ../build
rm -rf dist
mv ../src/dist .
echo "uploading......."
# python3 -m pip install --upgrade twine
twine upload dist/*