forked from nipy/nipype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
81 lines (60 loc) · 2.01 KB
/
Makefile
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
# 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,[email protected]:/home/frs/project/n/ni/nipy/nipype/nipype-0.1/
PYTHON ?= python
NOSETESTS ?= nosetests
.PHONY: zipdoc sdist egg upload_to_pypi trailing-spaces clean-pyc clean-so clean-build clean-ctags clean in inplace test-code test-doc test-coverage test html specs check-before-commit check
zipdoc: html
zip documentation.zip doc/_build/html
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
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: clean-build clean-pyc clean-so clean-ctags clean-doc
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-package=nipype \
--config=.coveragerc
test: clean test-code
html:
@echo "building docs"
make -C doc clean htmlonly
specs:
@echo "Checking specs and autogenerating spec tests"
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"