Skip to content

Commit

Permalink
Added an install option to Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Rubykuby committed Oct 2, 2014
1 parent 9b545bf commit da5fb31
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions {{cookiecutter.repo_name}}/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ help:
@echo "docs - generate Sphinx HTML documentation, including API docs"
@echo "release - package and upload a release"
@echo "dist - package"
@echo "install - install the package to the active Python's site-packages"

clean: clean-build clean-pyc
rm -fr htmlcov/
Expand Down Expand Up @@ -55,3 +56,6 @@ dist: clean
python setup.py sdist
python setup.py bdist_wheel
ls -l dist

install: clean
python setup.py install

0 comments on commit da5fb31

Please sign in to comment.