.PHONY: init init: pip3 install pipenv --upgrade pipenv install --dev --skip-lock shell: init pipenv shell test: pipenv run py.test flake8: pipenv run flake8 acme coverage: pipenv run py.test -c .coveragerc --verbose tests publish: pipenv run python setup.py sdist bdist_wheel # publish somewhere... rm -fr build dist .egg acme.egg-info