music-kraken-core/build.sh

14 lines
333 B
Bash
Raw Normal View History

2022-11-15 09:03:49 +00:00
pyinstaller --onefile src/run_cli.py
exit
2022-11-15 09:03:49 +00:00
# https://packaging.python.org/en/latest/tutorials/packaging-projects/
echo "building......"
python3 -m pip install --upgrade build
python3 -m build
echo "uploading......."
python3 -m pip install --upgrade twine
2022-11-15 09:03:49 +00:00
twine upload dist/music_kraken*
# twine upload --repository testpypi dist/*