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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
# 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 ?= python3
.PHONY: zipdoc sdist egg upload_to_pypi trailing-spaces clean-pyc clean-so clean-build clean-ctags clean in inplace test-code test-coverage test html specs check-before-commit check gen-base-dockerfile gen-main-dockerfile gen-dockerfiles
zipdoc: html
zip documentation.zip doc/_build/html
.git-blame-ignore-revs: .git/HEAD
git log --grep "\[ignore-rev\]\|STY: black\|run black" -i --pretty=format:"# %ad - %ae - %s%n%H" > .git-blame-ignore-revs
echo >> .git-blame-ignore-revs
sdist: zipdoc
@echo "Building source distribution..."
$(PYTHON) setup.py sdist
@echo "Done building source distribution."
# XXX copy documentation.zip to dist directory.
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|.rst]" -type f | 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
find . -name "__pycache__" -type d | xargs rm -rf
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-doc:
rm -rf doc/_build
clean-tests:
rm -f .coverage
clean: clean-build clean-pyc clean-so clean-ctags clean-doc clean-tests
in: inplace # just a shortcut
inplace:
$(PYTHON) setup.py build_ext -i
test-code: in
$(PYTHON) -m pytest --doctest-modules nipype
test-coverage: clean-tests in
$(PYTHON) -m pytest --doctest-modules --cov-config .coveragerc --cov=nipype nipype
test: tests # just another name
tests:
$(MAKE) clean
$(MAKE) test-code
html:
@echo "building docs"
$(MAKE) -C doc clean
$(MAKE) -C doc htmlonly
specs:
@echo "Checking specs and autogenerating spec tests"
env PYTHONPATH=".:$(PYTHONPATH)" $(PYTHON) tools/checkspecs.py
check: check-before-commit # just a shortcut
check-before-commit: specs trailing-spaces html test
@echo "removed spaces"
@echo "built docs"
@echo "ran test"
@echo "generated spec tests"
gen-base-dockerfile:
@echo "Generating base Dockerfile"
bash docker/generate_dockerfiles.sh -b
gen-main-dockerfile:
@echo "Generating main Dockerfile"
bash docker/generate_dockerfiles.sh -m
gen-dockerfiles: gen-base-dockerfile gen-main-dockerfile
|