diff --git a/pycmx/__init__.py b/pycmx/__init__.py index eff4800..8a43bb4 100644 --- a/pycmx/__init__.py +++ b/pycmx/__init__.py @@ -8,7 +8,7 @@ copy and reuse this software, refer to the LICENSE file included with the distribution. """ -__version__ = '0.8' +__version__ = '0.9' __author__ = 'Jamie Hardt' from .parse_cmx_events import parse_cmx3600 diff --git a/pypi_upload.sh b/pypi_upload.sh new file mode 100755 index 0000000..21ed0a3 --- /dev/null +++ b/pypi_upload.sh @@ -0,0 +1,2 @@ +#!/bin/bash +python3 -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/* diff --git a/setup.py b/setup.py index 8449519..e1bf24b 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ with open("README.md", "r") as fh: long_description = fh.read() setup(name='pycmx', - version='0.8', + version='0.9', author='Jamie Hardt', author_email='jamiehardt@me.com', description='CMX 3600 Edit Decision List Parser',