forked from napari/napari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
51 lines (42 loc) · 1.36 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
.PHONY: docs typestubs pre watch dist settings-schema
docs:
rm -rf docs/_build/
rm -rf docs/api/napari*.rst
rm -rf docs/gallery/*
pip install -qr docs/requirements.txt
python docs/_scripts/prep_docs.py
NAPARI_APPLICATION_IPY_INTERACTIVE=0 sphinx-build -b html docs/ docs/_build
typestubs:
python -m napari.utils.stubgen
# note: much faster to run mypy as daemon,
# dmypy run -- ...
# https://mypy.readthedocs.io/en/stable/mypy_daemon.html
typecheck:
mypy napari/settings napari/types.py napari/plugins napari/utils/context
dist:
pip install -U check-manifest build
make typestubs
check-manifest
python -m build
settings-schema:
python -m napari.settings._napari_settings
pre:
pre-commit run -a
# If the first argument is "watch"...
ifeq (watch,$(firstword $(MAKECMDGOALS)))
# use the rest as arguments for "watch"
WATCH_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
# ...and turn them into do-nothing targets
$(eval $(WATCH_ARGS):;@:)
endif
# examples:
# make watch ~/Desktop/Untitled.png
# make watch -- -w animation # -- is required for passing flags to napari
watch:
@echo "running: napari $(WATCH_ARGS)"
@echo "Save any file to restart napari\nCtrl-C to stop..\n" && \
watchmedo auto-restart -R \
--ignore-patterns="*.pyc*" -D \
--signal SIGKILL \
napari -- $(WATCH_ARGS) || \
echo "please run 'pip install watchdog[watchmedo]'"