-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
100 lines (83 loc) · 2.55 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
# Required executables
ifeq (, $(shell which python3))
$(error "No python3 on PATH.")
endif
ifeq (, $(shell which pipenv))
$(error "No pipenv on PATH.")
endif
# Suppress warning if pipenv is started inside .venv
export PIPENV_VERBOSITY = 1
# Use relative .venv folder instead of home-folder based
export PIPENV_VENV_IN_PROJECT = 1
# Ignore existing venvs
export PIPENV_IGNORE_VIRTUALENVS = 1
# Make sure we are running with an explicit encoding
export LC_ALL = C
export LANG = C.UTF-8
# Set configuration folder to venv
export PYPE_CONFIG_FOLDER = $(shell pwd)/.venv/.pype-cli
# Process variables
VERSION = $(shell python3 setup.py --version)
PY_FILES := setup.py ttctext tests
all: clean venv build
venv: clean
@echo Initialize virtualenv, i.e., install required packages etc.
pipenv --three install --dev
shell:
@echo Initialize virtualenv and open a new shell using it
pipenv shell
clean:
@echo Clean project base
find . -type d \
-name ".venv" -o \
-name ".tox" -o \
-name ".ropeproject" -o \
-name ".mypy_cache" -o \
-name ".pytest_cache" -o \
-name "__pycache__" -o \
-iname "*.egg-info" -o \
-name "build" -o \
-name "dist" \
|xargs rm -rfv
find . -type f \
-name "pyproject.toml" -o \
-name "Pipfile.lock" \
|xargs rm -rfv
test:
@echo Run all tests in default virtualenv
pipenv run py.test tests
testall:
@echo Run all tests against all virtualenvs defined in tox.ini
pipenv run tox -c setup.cfg tests
isort:
@echo Check for incorrectly sorted imports
pipenv run isort --check-only $(PY_FILES)
isort-apply:
@echo Check for incorrectly sorted imports
pipenv run isort $(PY_FILES)
mypy:
@echo Run static code checks against source code base
pipenv run mypy ttctext
pipenv run mypy tests
lint:
@echo Run code formatting checks against source code base
pipenv run flake8 ttctext tests
build: test mypy isort lint
@echo Run setup.py-based build process to package application
pipenv run python setup.py bdist_wheel
publish: all
@echo Release to pypi.org and create git tag
pipenv run twine upload dist/*
git tag -a $(VERSION) -m "Version $(VERSION)"
git push --tags
run:
@echo Execute ttctext directly
pipenv run python -m ttctext
fetch-latest-boilerplate:
@echo Fetch latest python3-boilerplate version from github
git remote add py3template [email protected]:BastiTee/python3-boilerplate.git \
||true
git pull py3template master --allow-unrelated-histories ||true
@echo ----------------------------------------------------
@echo Resolve all merge conflicts and commit your changes!
@echo ----------------------------------------------------