full-install: system-install python-deps

python-deps:
    pipenv install

python-dev-deps:
    pipenv install --dev

system-install: @confirm
    brew install python pipenv

pypi-upload: python-dev-deps
    pipenv run setup.py upload

test:
    echo $@
