From: David Kerkeslager Date: Sat, 27 Feb 2021 00:48:58 +0000 (-0500) Subject: Script the releases X-Git-Url: https://code.kerkeslager.com/?p=tickle;a=commitdiff_plain;h=dc060e7ef2ddcb24f5e1f7843e805a218040741f Script the releases --- diff --git a/build_distribution.sh b/build_distribution.sh new file mode 100644 index 0000000..9e31de4 --- /dev/null +++ b/build_distribution.sh @@ -0,0 +1 @@ +python setup.py sdist bdist_wheel --universal diff --git a/release.sh b/release.sh new file mode 100644 index 0000000..9dd3208 --- /dev/null +++ b/release.sh @@ -0,0 +1 @@ +twine upload $@ diff --git a/setup.py b/setup.py index 741bd55..fbb1700 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ import pathlib from setuptools import setup, find_packages HERE = pathlib.Path(__file__).parent -VERSION = '0.0.4' +VERSION = '0.0.5' PACKAGE_NAME = 'django_predrill_tickle' AUTHOR = 'David Kerkeslager' AUTHOR_EMAIL = 'david@kerkeslager.com'