forked from timkpaine/jupyterlab_autoversion
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
75 lines (54 loc) · 2.14 KB
/
Makefile
File metadata and controls
75 lines (54 loc) · 2.14 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
65
66
67
68
69
70
71
72
73
74
75
testpy: ## Clean and Make unit tests
python -m pytest -v jupyterlab_autoversion/tests --cov=jupyterlab_autoversion --junitxml=python_junit.xml --cov-report=xml --cov-branch
testjs: ## Clean and Make js tests
cd js; yarn test
test: tests
tests: testpy testjs ## run the tests
lintpy: ## Black/flake8 python
python -m black --check jupyterlab_autoversion setup.py
python -m flake8 jupyterlab_autoversion setup.py
lintjs: ## ESlint javascript
cd js; yarn lint
lint: lintpy lintjs ## run linter
fixpy: ## Black python
python -m black jupyterlab_autoversion/ setup.py
fixjs: ## ESlint Autofix JS
cd js; yarn fix
fix: fixpy fixjs ## run black/tslint fix
check: checks
checks: ## run lint and other checks
check-manifest
build: clean ## build python/javascript
python -m build . -n -w -s
develop: ## install to site-packages in editable mode
python -m pip install --upgrade build pip setuptools twine wheel
cd js; yarn
python -m pip install -e .[develop]
install: ## install to site-packages
python -m pip install .
dist: clean build ## create dists
python -m twine check dist/*
publishpy: ## dist to pypi
python -m twine upload dist/* --skip-existing
publishjs: ## dist to npm
cd js; npm publish || echo "can't publish - might already exist"
publish: dist publishpy publishjs ## dist to pypi and npm
docs: ## make documentation
make -C ./docs html
open ./docs/_build/html/index.html
clean: ## clean the repository
find . -name "__pycache__" | xargs rm -rf
find . -name "*.pyc" | xargs rm -rf
find . -name ".ipynb_checkpoints" | xargs rm -rf
rm -rf .coverage coverage *.xml build dist *.egg-info lib node_modules .pytest_cache *.egg-info
rm -rf jupyterlab_autoversion/labextension
cd js && yarn clean
# make -C ./docs clean
git clean -fd
# Thanks to Francoise at marmelab.com for this
.DEFAULT_GOAL := help
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
print-%:
@echo '$*=$($*)'
.PHONY: testjs testpy tests test lintpy lintjs lint fixpy fixjs fix checks check build develop install labextension dist publishpy publishjs publish docs clean