Setup CI pipeline on release publish that will automatically push to pypi
Package up using setup.py - Went for this as I wasn't sure how to use poetry to manage this as there is only a single script vs traditional packaging modules
Added Makefile to automate build/cleaning
To test local flow
python -m venv .venv
source .venv/bin/activate
pip install -r requirements-dev.txt
make
## Test pipx install
pipx install dist/decode_config-2022.1.1-py3-none-any.whl
To test local flow
Resolves #38