diff --git a/setup.py b/setup.py old mode 100644 new mode 100755 index 749257b..f0f9d9a --- a/setup.py +++ b/setup.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python3 # ***** BEGIN GPL LICENSE BLOCK ***** # # This program is free software; you can redistribute it and/or diff --git a/update_version.sh b/update_version.sh index 2d82d8f..964666d 100755 --- a/update_version.sh +++ b/update_version.sh @@ -15,3 +15,7 @@ echo echo "Don't forget to commit and tag:" echo git commit -m \'Bumped version to $1\' setup.py blender_asset_tracer/__init__.py docs/conf.py echo git tag -a v$1 -m \'Tagged version $1\' +echo +echo "Build the package & upload to PyPi using:" +echo "pipenv run ./setup.py sdist bdist_wheel" +echo "pipenv run twine upload dist/blender*asset*tracer*${VERSION}*"