-
Notifications
You must be signed in to change notification settings - Fork 300
/
Makefile
53 lines (40 loc) · 1.15 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
TMPREPO=/tmp/docs/ffn
.PHONY: clean dist docs pages serve notebooks klink test lint fix develop
develop:
python -m pip install -e .[dev]
test:
python -m pytest -vvv tests --cov=ffn --junitxml=python_junit.xml --cov-report=xml --cov-branch --cov-report term
lint:
python -m ruff check ffn setup.py docs/source/conf.py
python -m ruff format --check ffn setup.py docs/source/conf.py
fix:
python -m ruff check --fix ffn setup.py docs/source/conf.py
python -m ruff format ffn setup.py docs/source/conf.py
clean:
rm -rf dist
rm -rf ffn.egg-info
dist:
python -m build -s -w
python -m twine check dist/*
upload: clean dist
python -m twine upload dist/* --skip-existing
docs:
$(MAKE) -C docs/ clean
$(MAKE) -C docs/ html
pages:
rm -rf $(TMPREPO)
git clone -b gh-pages [email protected]:pmorissette/ffn.git $(TMPREPO)
rm -rf $(TMPREPO)/*
cp -r docs/build/html/* $(TMPREPO)
cd $(TMPREPO);\
git add -A;\
git commit -a -m 'auto-updating docs';\
git push;\
serve:
cd docs/build/html; \
python -m http.server 9087
notebooks:
cd docs/source; \
jupyter notebook --no-browser --ip=*
klink:
git subtree pull --prefix=docs/source/_themes/klink --squash klink master