-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
76 lines (61 loc) · 1.9 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
PYTHON := python
module:=pprintjson
project:=pprintjson
version:=$(shell $(PYTHON) -c 'import sys, os; sys.path.insert(0, os.path.abspath(".")); print(__import__("${project}").__version__)')
.PHONY: list
list help:
@make -pq | awk -F':' '/^[a-zA-Z0-9][^$$#\/\t=]*:([^=]|$$)/ {split($$1,A,/ /);for(i in A)print A[i]}' | sed '/Makefile/d' | sort
.PHONY: format
format:
@$(PYTHON) -m black $(module) $(ARGS)
.PHONY: format-check
format-check:
@$(MAKE) format ARGS="--check"
.PHONY: lint
lint:
@$(PYTHON) -m flake8 --max-line-length 100 $(module)
.PHONY: build
build: clean
@rm -rf ./dist/*
@$(PYTHON) setup.py sdist bdist_wheel
.PHONY: test
test:
@$(PYTHON) -m pytest $(module) $(ARGS)
.PHONY: test-cov
test-cov:
@$(MAKE) test --cov=api_tools --cov-report=html --cov-report=term --show-capture=all
.PHONY: clean
clean:
@rm -rf ./dist ./build ./*.egg-info ./htmlcov
@find . -name '*.pyc' -delete
@find . -name '__pycache__' -delete
.PHONY: check
check:
@$(PYTHON) -m twine check dist/*
.PHONY: tag
tag:
ifeq (,$(shell git tag --list | grep "${version}"))
@git tag "v${version}"
@git push --tags
endif
.PHONY: release
release: tag
ifdef version
@curl -XPOST \
-H "Authorization: token ${GITHUB_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
"https://api.github.com/repos/clarketm/${project}/releases" \
--data "{\"tag_name\": \"v${version}\",\"target_commitish\": \"master\",\"name\": \"v${version}\",\"draft\": false,\"prerelease\": false}"
endif
.PHONY: install
install:
@$(PYTHON) -m pip install --force-reinstall "${project}"
.PHONY: install-test
install-test:
@$(PYTHON) -m pip install --force-reinstall --index-url https://test.pypi.org/simple "${project}"
.PHONY: upload publish
publish upload: test clean build check release
@$(PYTHON) -m twine upload dist/*
.PHONY: upload-test
upload-test: test clean build check
@$(PYTHON) -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*