diff --git a/scripts/publish_to_pypi.sh b/scripts/publish_to_pypi.sh new file mode 100755 index 0000000..d1c0f85 --- /dev/null +++ b/scripts/publish_to_pypi.sh @@ -0,0 +1,5 @@ +#!/usr/bin/env bash + +# Use this script to manually publish to PyPI! +python3 setup.py sdist bdist_wheel +python3 -m twine upload dist/* diff --git a/setup.cfg b/setup.cfg index 8db0300..4e020d6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.2.0 [metadata] license_files = LICENSE.txt