mirror of
https://github.com/datafolklabs/cement.git
synced 2026-02-06 13:26:45 +00:00
20 lines
317 B
Makefile
20 lines
317 B
Makefile
.PHONY: all init doc test clean
|
|
|
|
all: init test doc clean
|
|
|
|
init:
|
|
pip install --upgrade -r requirements-dev.txt
|
|
|
|
test:
|
|
python setup.py nosetests
|
|
|
|
doc:
|
|
python setup.py build_sphinx
|
|
@echo
|
|
@echo DOC: "file://"$$(echo `pwd`/doc/build/html/index.html)
|
|
@echo
|
|
|
|
clean:
|
|
find . -name '*.py[co]' -delete
|
|
rm -rf doc/build
|