forked from klen/dealer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
86 lines (69 loc) · 1.8 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
VIRTUALENV=$(shell echo "$${VDIR:-'.env'}")
all: $(VIRTUALENV)
.PHONY: help
# target: help - Display callable targets
help:
@egrep "^# target:" [Mm]akefile
.PHONY: clean
# target: clean - Clean repo
clean:
rm -rf build dist
find . -name "*.pyc" -delete
find . -name "*.orig" -delete
find $(CURDIR)/$(MODULE) -name "__pycache__" | xargs rm -rf
find $(CURDIR)/$(MODULE) -name "*.egg" | xargs rm -rf
# ==============
# Bump version
# ==============
.PHONY: release
VERSION?=minor
# target: release - Bump version
release: $(VIRTUALENV)
@$(VIRTUALENV)/bin/pip install bumpversion
@$(VIRTUALENV)/bin/bumpversion $(VERSION)
@git checkout master
@git merge develop
@git checkout develop
@git push --all
@git push --tags
.PHONY: minor
minor: release
.PHONY: patch
patch:
make release VERSION=patch
.PHONY: major
major:
make release VERSION=major
# ===============
# Build package
# ===============
.PHONY: register
# target: register - Register module on PyPi
register:
@$(VIRTUALENV)/bin/python setup.py register
.PHONY: upload
# target: upload - Upload module on PyPi
upload: clean
@pip install twine wheel
@python setup.py sdist bdist_wheel
@$(VIRTUAL_ENV)/bin/twine upload dist/*
@$(VIRTUAL_ENV)/bin/pip install -e $(CURDIR)
# =============
# Development
# =============
#
$(VIRTUALENV):
@[ -d $(VIRTUALENV) ] || virtualenv --no-site-packages $(VIRTUALENV)
@touch $(VIRTUALENV)
$(VIRTUALENV)/bin/py.test: $(VIRTUALENV) requirements-test.txt
@$(VIRTUALENV)/bin/pip install -r requirements-test.txt
@touch $(VIRTUALENV)/bin/py.test
.PHONY: t
# target: t - Runs tests
t: $(VIRTUALENV)/bin/py.test
@$(VIRTUALENV)/bin/py.test -xs tests
.PHONY: docs
# target: docs - Compile docs
docs:
@$(VIRTUALENV)/bin/pip install sphinx
python setup.py build_sphinx --source-dir=docs/ --build-dir=docs/_build --all-files