-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathMakefile
107 lines (81 loc) · 3.12 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# simple makefile to simplify repetetive build env management tasks under posix
# caution: testing won't work on windows, see README
PYTHON ?= python
PYTESTS ?= py.test
CTAGS ?= ctags
CODESPELL_SKIPS ?= "*.html,*.fif,*.eve,*.gz,*.tgz,*.zip,*.mat,*.stc,*.label,*.w,*.bz2,*.annot,*.sulc,*.log,*.local-copy,*.orig_avg,*.inflated_avg,*.gii,*.pyc,*.doctree,*.pickle,*.inv,*.png,*.edf,*.touch,*.thickness,*.nofix,*.volume,*.defect_borders,*.mgh,lh.*,rh.*,COR-*,FreeSurferColorLUT.txt,*.examples,.xdebug_mris_calc,bad.segments,BadChannels,*.hist,empty_file,*.orig,*.js,*.map,*.ipynb,searchindex.dat"
CODESPELL_DIRS ?= meegkit/ examples/
help:
@echo "Please use \`make <target>' where <target> is one of:"
@echo " all to build everything"
@echo " init to check all external links for integrity"
@echo " clean to run all doctests embedded in the documentation (if enabled)"
@echo " build-doc to make standalone HTML documentation files"
@echo " pep to run PEP8 checks"
@echo " pydocstyle to check docstyle"
@echo " flake to run flake8"
@echo " test to run tests"
all: clean inplace test test-doc
# pip install -r requirements.txt
init:
conda env create -f environment.yml
# Cleaning
# =============================================================================
clean-pyc:
find . -name "*.pyc" | xargs rm -f
clean-build:
rm -rf _build
clean-cache:
find . -name "__pycache__" | xargs rm -rf
clean: clean-build clean-pyc clean-cache
# Doc
# =============================================================================
build-doc:
cd doc; make clean
cd doc; make html
build-examples:
cd examples; find . -name "example_*.py" | xargs sphx_glr_python_to_jupyter.py
cd examples; find . -name "example_*.ipynb" | xargs jupyter nbconvert --execute --to notebook --inplace
# Style
# =============================================================================
codespell: # running manually
@codespell -w -i 3 -q 3 -S $(CODESPELL_SKIPS) $(CODESPELL_DIRS)
codespell-error: # running on travis
@codespell -i 0 -q 7 -S $(CODESPELL_SKIPS) $(CODESPELL_DIRS)
pydocstyle:
@echo "Running pydocstyle"
@pydocstyle
pep:
@$(MAKE) -k ruff codespell
ruff:
@ruff check $(CODESPELL_DIRS)
ruff-fix:
@ruff check $(CODESPELL_DIRS) --fix
# Build and install
# =============================================================================
install-requirements:
@echo "Checking/Installing requirements..."
@pip install -q -r requirements.in
install:
@echo "Installing package..."
@pip install -q --no-deps .
@echo "\x1b[1m\x1b[32m * Package successfully installed! \x1b[0m"
install-dev:
@echo "Installing package in editable mode..."
@pip install -q -e ".[docs, tests]" --config-settings editable_mode=compat
@echo "\x1b[1m\x1b[32m * Package successfully installed! \x1b[0m"
# Tests
# =============================================================================
test: in
rm -f .coverage
$(PYTESTS) -m 'not ultraslowtest' meegkit
test-verbose: in
rm -f .coverage
$(PYTESTS) -m 'not ultraslowtest' meegkit --verbose
test-fast: in
rm -f .coverage
$(PYTESTS) -m 'not slowtest' meegkit
test-full: in
rm -f .coverage
$(PYTESTS) meegkit
.PHONY: init test