-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
106 lines (80 loc) · 2.11 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
105
106
.ONESHELL:
#########
# BUILD #
#########
develop:
python -m pip install pylint
python -m pip install coverage
python -m pip install check-manifest
python -m pip install black
python -m pip install mypy
python -m pip install inflection
build:
python setup.py build build_ext --inplace
install:
python -m pip install .
#########
# LINTS #
#########
lint:
python -m black src .
pylint --rcfile=.pylintrc $$(git ls-files '*.py')
# alias
lints: lint
format:
python -m black src .
# alias
fix: format
check:
check-manifest -v
# alias
checks: check
annotate:
python -m mypy src
#########
# TESTS #
#########
test: ## clean and run unit tests
python -m unittest src/tests/test_itzma.py
coverage: ## clean and run unit tests with coverage
python -m coverage run -m unittest src/tests/test_itzma.py
python -m coverage report
python -m coverage json
# 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