-
Notifications
You must be signed in to change notification settings - Fork 95
/
Makefile
99 lines (79 loc) · 2.03 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
MODULE=mixer
SPHINXBUILD=sphinx-build
ALLSPHINXOPTS= -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
BUILDDIR=_build
all: $(VIRTUAL_ENV)
.PHONY: help
# target: help - Display callable targets
help:
@egrep "^# target:" [Mm]akefile
.PHONY: clean
# target: clean - Clean repo
clean:
@rm -rf build dist docs/_build
find $(CURDIR)/$(MODULE) -name "*.pyc" -delete
find $(CURDIR)/$(MODULE) -name "*.orig" -delete
find $(CURDIR)/$(MODULE) -name "__pycache__" -delete
# ==============
# Bump version
# ==============
.PHONY: release
VERSION?=minor
# target: release - Bump version
release:
@pip install bump2version
@bump2version $(VERSION)
@git checkout master
@git merge develop
@git checkout develop
@git push origin master develop
@git push --tags
.PHONY: minor
minor: release
.PHONY: patch
patch:
make release VERSION=patch
# ===============
# Build package
# ===============
.PHONY: register
# target: register - Register module on PyPi
register:
@python setup.py register
.PHONY: upload
# target: upload - Upload module on PyPi
upload: clean
@pip install twine wheel
@python setup.py sdist bdist_wheel
@twine upload dist/*.whl || true
@twine upload dist/*.gz || true
.PHONY: docs
# target: docs - Compile the docs
docs: docs
@$(VIRTUAL_ENV)/bin/pip install sphinx
python setup.py build_sphinx --source-dir=docs/ --build-dir=docs/_build --all-files
# python setup.py upload_sphinx --upload-dir=docs/_build/html
# =============
# Development
# =============
VIRTUAL_ENV ?= $(CURDIR)/env
$(VIRTUAL_ENV): requirements.txt requirements-tests.txt
@[ -d $(VIRTUAL_ENV) ] || python -m venv $(VIRTUAL_ENV)
@$(VIRTUAL_ENV)/bin/pip install -e .[tests]
@touch $(VIRTUAL_ENV)
TEST=tests
.PHONY: t
# target: t - Runs tests
t: clean $(VIRTUAL_ENV)
$(VIRTUAL_ENV)/bin/py.test $(TEST) -s
.PHONY: audit
# target: audit - Audit code
audit:
@pylama $(MODULE) -i E501
.PHONY: serve
# target: serve - Run HTTP server with compiled docs
serve:
pyserve docs/_build/html/
.PHONY: pep8
pep8:
find $(MODULE) -name "*.py" | xargs -n 1 autopep8 -i