mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-27 19:48:43 +08:00
5ccdd36bc3
Do not provide imshow, show in PIL plugin to prevent conflicts Make the sphinx install quiet Fix local linka Fix literal blocks Fix another local link Fix richardson-lucy link Assert world dominance
21 lines
449 B
Makefile
21 lines
449 B
Makefile
.PHONY: all clean test
|
|
|
|
all:
|
|
python setup.py build_ext --inplace
|
|
|
|
clean:
|
|
find . -name "*.so" -o -name "*.pyc" -o -name "*.pyx.md5" | xargs rm -f
|
|
|
|
test:
|
|
python -c "import skimage, sys, io; sys.exit(skimage.test_verbose())"
|
|
|
|
doctest:
|
|
python -c "import skimage, sys, io; sys.exit(skimage.doctest_verbose())"
|
|
|
|
coverage:
|
|
nosetests skimage --with-coverage --cover-package=skimage
|
|
|
|
html:
|
|
pip install -q sphinx
|
|
export SPHINXOPTS=-W; make -C doc html
|