moto/Makefile

13 lines
203 B
Makefile
Raw Normal View History

2013-02-18 21:09:40 +00:00
SHELL := /bin/bash
init:
@python setup.py develop
@pip install -r requirements.txt
2013-02-18 21:09:40 +00:00
test:
rm -f .coverage
@nosetests -sv --with-coverage ./tests/
2013-06-27 13:35:46 +00:00
2015-02-22 15:58:51 +00:00
publish:
python setup.py sdist bdist_wheel upload