gunicorn/Makefile
2012-10-28 22:59:33 -07:00

14 lines
242 B
Makefile

build:
virtualenv --no-site-packages .
bin/python setup.py develop
bin/pip install -r requirements_dev.txt
test:
bin/python setup.py test
coverage:
bin/python setup.py test --cov
clean:
@rm -rf .Python bin lib include man build html