Skip to content

Commit

Permalink
Added new makefile targets for installing, uninstalling and publishin…
Browse files Browse the repository at this point in the history
…g Python Distribution Package. Also sorted target order.
  • Loading branch information
Greg Albrecht committed Nov 16, 2012
1 parent 1e37664 commit d3a6f52
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Makefile
@@ -1,5 +1,22 @@
.DEFAULT_GOAL := init

clean:
rm -rf *.egg-info dist

develop:
python setup.py develop

init:
gem install dtf --version 0.1.2

install:
python setup.py install

publish: clean
python setup.py register sdist upload

test:
dtf tests/*

uninstall:
pip uninstall autoenv

0 comments on commit d3a6f52

Please sign in to comment.