mirror of
https://github.com/datafolklabs/cement.git
synced 2026-02-06 11:16:46 +00:00
Add Makefile/MANIFEST.in - Resolves Issue #405
This commit is contained in:
parent
2ba85f231b
commit
39853ddffb
4
MANIFEST.in
Normal file
4
MANIFEST.in
Normal file
@ -0,0 +1,4 @@
|
||||
recursive-include *.py
|
||||
include setup.cfg
|
||||
include README.md ChangeLog LICENSE CONTRIBUTORS
|
||||
include *.txt
|
||||
19
Makefile
Normal file
19
Makefile
Normal file
@ -0,0 +1,19 @@
|
||||
.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
|
||||
Loading…
Reference in New Issue
Block a user