Skip to content

Commit

Permalink
Add make setup command
Browse files Browse the repository at this point in the history
  • Loading branch information
ghickman committed Dec 25, 2015
1 parent b35d6cf commit f020dc6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit f020dc6

Please sign in to comment.