added make file

This commit is contained in:
Akhil Lawrence 2017-03-20 22:12:14 +05:30
parent 7d64cf568a
commit c66834afe1

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