Skip to content

Commit

Permalink
update makefile to add clean
Browse files Browse the repository at this point in the history
  • Loading branch information
red-crown committed Mar 7, 2016
1 parent ba58019 commit 7609a6b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,16 @@ coverage:
publish:
python setup.py register
python setup.py sdist upload
python setup.py bdist_wheel --universal upload
python setup.py bdist_egg --plat-name universal upload
rm -fr build dist .egg rcquerybuilder.egg-info

publish-sign:
python setup.py register
python setup.py sdist upload --sign --identity 8826CCF8
python setup.py bdist_egg --plat-name universal upload --sign --identity 8826CCF8
rm -fr build dist .egg rcquerybuilder.egg-info

clean:
rm -fr build dist .egg rcquerybuilder.egg-info

docs:
Expand Down

0 comments on commit 7609a6b

Please sign in to comment.