forked from hmmlearn/hmmlearn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# simple makefile to simplify repetetive build env management tasks under posix | ||
|
||
# caution: testing won't work on windows, see README | ||
|
||
PYTHON ?= python | ||
CYTHON ?= cython | ||
NOSETESTS ?= nosetests | ||
CTAGS ?= ctags | ||
|
||
all: clean inplace test | ||
|
||
clean-ctags: | ||
rm -f tags | ||
|
||
clean: clean-ctags | ||
$(PYTHON) setup.py clean | ||
rm -rf dist | ||
|
||
in: inplace # just a shortcut | ||
inplace: | ||
$(PYTHON) setup.py build_ext -i | ||
|
||
test-code: in | ||
$(NOSETESTS) -s -v hmmlearn | ||
test-doc: | ||
$(NOSETESTS) -s -v doc/ doc/modules/ doc/datasets/ \ | ||
doc/developers doc/tutorial/basic doc/tutorial/statistical_inference \ | ||
doc/tutorial/text_analytics | ||
|
||
test-coverage: | ||
rm -rf coverage .coverage | ||
$(NOSETESTS) -s -v --with-coverage hmmlearn | ||
|
||
test: test-code test-doc | ||
|
||
trailing-spaces: | ||
find hmmlearn -name "*.py" | xargs perl -pi -e 's/[ \t]*$$//' | ||
|
||
cython: | ||
find hmmlearn -name "*.pyx" | xargs $(CYTHON) | ||
|
||
ctags: | ||
# make tags for symbol based navigation in emacs and vim | ||
# Install with: sudo apt-get install exuberant-ctags | ||
$(CTAGS) -R * | ||
|
||
doc: inplace | ||
$(MAKE) -C doc html | ||
|
||
doc-noplot: inplace | ||
$(MAKE) -C doc html-noplot | ||
|
||
code-analysis: | ||
flake8 hmmlearn | grep -v __init__ | grep -v external | ||
pylint -E -i y hmmlearn/ -d E1103,E0611,E1101 |