music-kraken-core/build.sh

19 lines
405 B
Bash

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