-
Notifications
You must be signed in to change notification settings - Fork 10
/
Makefile
98 lines (72 loc) · 2.27 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
#########
# BUILD #
#########
develop: ## install dependencies and build library
python -m pip install -e .[develop]
build: ## build the python library
python setup.py build build_ext --inplace
install: ## install library
python -m pip install .
#########
# LINTS #
#########
lint: ## run static analysis with flake8
python -m black --check example_project_python setup.py
python -m flake8 example_project_python setup.py
# Alias
lints: lint
format: ## run autoformatting with black
python -m black example_project_python/ setup.py
# alias
fix: format
check: ## check assets for packaging
check-manifest -v
# Alias
checks: check
annotate: ## run type checking
python -m mypy ./example_project_python
#########
# TESTS #
#########
test: ## clean and run unit tests
python -m pytest -v example_project_python/tests
coverage: ## clean and run unit tests with coverage
python -m pytest -v example_project_python/tests --cov=example_project_python --cov-branch --cov-fail-under=75 --cov-report term-missing
# Alias
tests: test
###########
# VERSION #
###########
show-version:
bump2version --dry-run --allow-dirty setup.py --list | grep current | awk -F= '{print $2}'
patch:
bump2version patch
minor:
bump2version minor
major:
bump2version major
########
# DIST #
########
dist-build: # Build python dist
python setup.py sdist bdist_wheel
dist-check:
python -m twine check dist/*
dist: clean build dist-build dist-check ## Build dists
publish: # Upload python assets
echo "would usually run python -m twine upload dist/* --skip-existing"
#########
# CLEAN #
#########
deep-clean: ## clean everything from the repository
git clean -fdx
clean: ## clean the repository
rm -rf .coverage coverage cover htmlcov logs build dist *.egg-info .pytest_cache
############################################################################################
# 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: develop build install lint lints format fix check checks annotate test coverage show-coverage tests show-version patch minor major dist-build dist-check dist publish deep-clean clean help