-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
65 lines (51 loc) · 1.72 KB
/
Makefile
File metadata and controls
65 lines (51 loc) · 1.72 KB
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
# inspired from https://github.com/xolox/python-humanfriendly/blob/master/Makefile
PACKAGE_NAME = $(shell python3 setup.py --name)
PACKAGE_VERSION = $(shell python3 setup.py --version)
# Add arguments to "make report"
ifeq (report,$(firstword $(MAKECMDGOALS)))
# use the rest as arguments for "report"
RUN_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
# ...and turn them into do-nothing targets
$(eval $(RUN_ARGS):;@:)
endif
default:
@echo "Makefile for $(PACKAGE_NAME) $(PACKAGE_VERSION)"
@echo
@echo 'Usage:'
@echo
@echo ' make install build the package'
@echo ' make test run the test suite'
@echo ' make reports build the statistic reports'
@echo ' make publish publish changes to GitHub/PyPI'
@echo ' make clean cleanup all temporary files'
@echo
install:
@$(MAKE) clean
@python3 -m pip install -r requirements.txt
# @python3 setup.py sdist bdist_wheel
# @python3 -m pip install -e .
data:
@$(bash) fmriprep-reproducibility/get_data.bash
run:
@$(bash) fmriprep-reproducibility/run.bash
test:
@pytest fmriprep-reproducibility/tests/
report:
@python3 fmriprep-reproducibility/visualization/make_reports.py $(ARGS)
reference:
@python3 fmriprep-reproducibility/data/make_reference.py $(ARGS)
publish-reference:
#datalad commit reference
#datalad push --to osf
publish:
# @git push origin && git push --tags origin
# @python3 -m pip install twine wheel setuptools
# @$(MAKE) install
# @python3 -m twine upload dist/*
# @$(MAKE) clean
publish-test:
# push tests on another datalad repo ?
clean:
@rm -Rf *.egg *.egg-info .cache .coverage .tox build dist docs/build htmlcov
@find -depth -type d -name __pycache__ -exec rm -Rf {} \;
@find -type f -name '*.pyc' -delete