This commit is contained in:
Akhil Lawrence 2017-06-04 07:43:44 +00:00 committed by GitHub
commit 627cc55943

22
Makefile Normal file
View File

@ -0,0 +1,22 @@
.PHONY: clean install docs tests all
clean:
find . -type f -name "*.pyc" -delete
find . -type f -name "*.db" -delete
rm -rf ./site
rm -rf ./htmlcov
rm -rf ./coverage
rm -rf ./build
rm -rf ./dist
install:
pip install django
pip install -r requirements.txt
docs:
mkdocs build
tests:
python runtests.py
all: clean install docs tests