This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
125 lines (90 loc) · 3.47 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
##############################################################################################
# SETUP #
##############################################################################################
SOURCE_FOLDER = pybokio
PYTHON ?= python3
##############################################################################################
# PROJECT SETUP #
##############################################################################################
.PHONY: env
env:
$(PYTHON) -m venv .venv --prompt $(SOURCE_FOLDER)
.PHONY: env-update
env-update:
bash -c ". .venv/bin/activate; pip install --upgrade -r requirements.txt"
##############################################################################################
# BASIC COMMANDS #
##############################################################################################
.PHONY: clean
clean:
rm -f .gitinfo
rm -rf build dist *.egg-info
find $(SOURCE_FOLDER) -name __pycache__ | xargs rm -rf
find $(SOURCE_FOLDER) -name '*.pyc' -delete
rm -rf reports .coverage
rm -rf docs/build docs/source
rm -rf .*cache
.PHONY: check
check: check-imports check-code
.PHONY: check-imports
check-imports:
isort --check-only $(SOURCE_FOLDER) tests/*
vulture
.PHONY: check-code
check-code:
black --check $(SOURCE_FOLDER) tests/*
.PHONY: reformat
reformat:
isort --atomic $(SOURCE_FOLDER) tests/*
black $(SOURCE_FOLDER) tests/*
.PHONY: tests
tests:
pytest tests/
.PHONY: tests-unit
tests-unit:
pytest tests/unit/
.PHONY: tests-integration
tests-integration:
pytest tests/integration/
.PHONY: coverage
coverage:
pytest --cov=$(SOURCE_FOLDER) tests/
##############################################################################################
# BUILDING & PUBLISHING #
##############################################################################################
.PHONY: build
build:
python setup.py --quiet sdist bdist_wheel
.PHONY: publish-test
publish-test:
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
.PHONY: publish
publish:
twine upload dist/*
.PHONY: build-publish
build-publish: clean build publish
python setup.py --quiet sdist bdist_wheel
##############################################################################################
# VERSIONING #
##############################################################################################
.PHONY: version
version:
python -c "import $(SOURCE_FOLDER); print($(SOURCE_FOLDER).__version__)"
.PHONY: bump-version-patch
bump-version-patch:
# Note: You should only run this on a clean working copy
# If this operation succeeds, it will create a version-bumping commit
bump2version patch --list
git log --oneline -1
.PHONY: bump-version-minor
bump-version-minor:
# Note: You should only run this on a clean working copy
# If this operation succeeds, it will create a version-bumping commit
bump2version minor --list
git log --oneline -1
.PHONY: bump-version-major
bump-version-major:
# Note: You should only run this on a clean working copy
# If this operation succeeds, it will create a version-bumping commit
bump2version major --list
git log --oneline -1