1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-02-17 10:53:57 +00:00
royalnet/to_pypi.sh

13 lines
301 B
Bash
Raw Normal View History

2019-10-25 14:31:41 +02:00
#!/bin/bash
# Royalnet must be installed with `develop`
VERSION=$(python3.7 -m royalnet.version)
rm -rf dist
python setup.py sdist bdist_wheel
2019-11-11 09:28:05 +01:00
twine upload "dist/royalnet-$VERSION"*
2019-10-25 15:00:47 +02:00
git add *
git commit -m "$VERSION"
git push
hub release create --message "Royalnet $VERSION" --prerelease "$VERSION"