1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
# Makefile for building distributions of nipype.
# Files are then pushed to sourceforge using rsync with a command like this:
# rsync -e ssh nipype-0.1-py2.5.egg cburns,nipy@frs.sourceforge.net:/home/frs/project/n/ni/nipy/nipype/nipype-0.1/
PYTHON ?= python
NOSETESTS ?= nosetests
zipdoc:
@echo "Clean documentation directory."
python setup.py clean
@echo "Build documentation.zip..."
python setup.py build_sphinx
@echo "Clean documentation directory."
python setup.py clean
sdist: zipdoc
@echo "Building source distribution..."
python setup.py sdist
@echo "Done building source distribution."
# XXX copy documentation.zip to dist directory.
# XXX Somewhere the doc/_build directory is removed and causes
# this script to fail.
egg: zipdoc
@echo "Building egg..."
python setup.py bdist_egg
@echo "Done building egg."
upload_to_pypi: zipdoc
@echo "Uploading to PyPi..."
python setup.py sdist --formats=zip,gztar upload
trailing-spaces:
find . -name "*.py" | xargs perl -pi -e 's/[ \t]*$$//'
@echo "Reverting test_docparse"
git checkout nipype/utils/tests/test_docparse.py
clean-pyc:
find . -name "*.pyc" | xargs rm -f
clean-so:
find . -name "*.so" | xargs rm -f
find . -name "*.pyd" | xargs rm -f
clean-build:
rm -rf build
clean-ctags:
rm -f tags
clean: clean-build clean-pyc clean-so clean-ctags
in: inplace # just a shortcut
inplace:
$(PYTHON) setup.py build_ext -i
test-code: in
$(NOSETESTS) -s nipype --with-doctest
test-doc:
$(NOSETESTS) -s --with-doctest --doctest-tests --doctest-extension=rst \
--doctest-fixtures=_fixture doc/
test-coverage:
$(NOSETESTS) -s --with-doctest --with-coverage --cover-erase --cover-html \
--cover-html-dir=coverage --cover-package=nipype nipype
test: clean test-code
html:
@echo "building docs"
make -C doc clean html
check-before-commit: trailing-spaces html test
@echo "removed spaces"
@echo "built docs"
@echo "ran test"
|