From f020dc6ce7990d99083d502b95fa37f2f0a23066 Mon Sep 17 00:00:00 2001 From: George Hickman Date: Fri, 25 Dec 2015 09:22:47 +0000 Subject: [PATCH] Add make setup command --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 313fa38..2deb36a 100644 --- a/Makefile +++ b/Makefile @@ -3,10 +3,15 @@ SHELL := /bin/bash help: @echo "usage:" @echo " make release -- build and release to PyPI" + @echo " make setup -- set up for local dev" @echo " make test -- run the tests" release: python setup.py register sdist bdist_wheel upload +setup: + pip install -e . + pip install -r requirements.txt + test: tox