-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
197 lines (144 loc) · 5.58 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
.DEFAULT_GOAL := help
PACKAGE_DIR := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
VENV := .venv
VENV_BIN := $(VENV)/bin
PYTHON := $(VENV_BIN)/python3
PIP := $(VENV_BIN)/pip
INSTALL_STAMP := $(VENV)/.install.stamp
UPDATE_STAMP := $(VENV)/.update.stamp
DEVELOPER_MODE := 1
COVERAGE_SERVER_PORT := 8000
COVERAGE_DIR := $(PACKAGE_DIR)/build/documentation/coverage/
DEP_FILES := $(wildcard setup.*) $(wildcard requirements*.txt) $(wildcard pyproject.toml)
####################
##@ Helper Commands
####################
help: ## Display this help
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m\033[0m\n"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
.PHONY: help
######################
##@ Cleaning Commands
######################
clean-venv: ## Clean virtualenv
rm -rf $(VENV)/
clean-install-stamp:
rm -rf $(INSTALL_STAMP)
clean-build: ## Clean build artifacts (egg/dist/build etc.)
rm -rf build/
rm -rf dist/
rm -rf .eggs/
find . -name '*.egg-info' -exec rm -rf {} +
find . -name '*.egg' -exec rm -f {} +
clean-pyc: ## remove pyc/pyo files
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
find . -name '__pycache__' -exec rm -rf {} +
clean-test: ## Remove test artifacts
rm -rf build/.tox/
rm -rf build/.pytest_cache/
clean-docs: ## Remove documentation artifacts
rm -rf build/documentation/
rm -rf .coverage
clean: clean-install-stamp clean-build clean-pyc clean-test clean-docs ## alias to clean-{build,pyc,test,docs}
obliterate: clean-venv clean ## alias to clean, clean-venv
.PHONY: clean-venv clean-install-stamp clean-build clean-pyc clean-test clean obliterate
#########################
##@ Installation Commands
#########################
create-venv: $(PYTHON) ## Creates virtualenv
$(PYTHON):
python3 -m venv $(VENV) --prompt $(shell basename $(PACKAGE_DIR))
$(PYTHON) -m pip install --upgrade pip
install: $(INSTALL_STAMP) ## Installs package dependencies
$(INSTALL_STAMP): $(PYTHON) $(DEP_FILES)
@. $(VENV_BIN)/activate;\
$(PIP) install -e .[dev];
@touch $(INSTALL_STAMP)
install-release: clean-install-stamp $(PYTHON) $(DEP_FILES) ## Installs package for release
@. $(VENV_BIN)/activate;\
$(PIP) install .[release]
install-force: clean-install-stamp install ## Force install package dependencies
link-packages: ## Link local packages to virtualenv
@parent_dir=$$(dirname $$(pwd)); \
local_packages=$$(ls $$parent_dir); \
dependencies=$$($(PIP) list --format freeze --exclude-editable | awk -F '==' '{print $$1}');\
for local_package in $$local_packages; do \
for dependency in $$dependencies; do \
if [ $$local_package == $$dependency ]; then \
echo "Reinstalling $$local_package dependency to local override"; \
$(PIP) install -e $$parent_dir/$$local_package --no-deps; \
fi \
done; \
done
unlink-packages: ## Unlink local packages from virtualenv
@parent_dir=$$(dirname $$(pwd)); \
this_package=$$(basename $$(pwd)); \
local_packages=$$(ls $$parent_dir); \
dependencies=$$($(PIP) list --format freeze --editable | awk -F '==' '{print $$1}');\
is_found=0; \
for local_package in $$local_packages; do \
for dependency in $$dependencies; do \
if [ $$local_package == $$dependency ] && [ $$local_package != $$this_package ]; then \
is_found=1; \
fi; \
done \
done; \
if [ $$is_found == 1 ]; then \
echo "Found dependencies installed locally, reinstalling..."; \
make clean-install-stamp install; \
fi
.PHONY: create-venv install install-force link-packages unlink-packages
#######################
##@ Formatting Commands
#######################
lint-black: $(INSTALL_STAMP) ## Run black (check only)
$(VENV_BIN)/black ./ --check
lint-isort: $(INSTALL_STAMP) ## Run isort (check only)
$(VENV_BIN)/isort ./ --check
lint-mypy: $(INSTALL_STAMP) ## Run mypy
$(VENV_BIN)/mypy ./
lint: lint-isort lint-black lint-mypy ## Run all lint targets (black, isort, mypy)
format-black: $(INSTALL_STAMP) ## Format code using black
$(VENV_BIN)/black ./
format-isort: $(INSTALL_STAMP) ## Format code using isort
$(VENV_BIN)/isort ./
format: format-isort format-black ## Run all formatters (black, isort)
.PHONY: lint-isort lint-black lint-mypy lint format-lint format-black format-mypy format
#####################
##@ Testing Commands
#####################
pytest: $(INSTALL_STAMP) ## Run test (pytest)
$(VENV_BIN)/pytest -vv --durations=10
tox: $(INSTALL_STAMP) ## Run Test in tox environment
$(VENV_BIN)/tox
test: pytest ## Run Standard Tests
.PHONY: pytest tox test
#####################
##@ Inspect Commands
#####################
coverage-server: $(INSTALL_STAMP) ## Run coverage server
$(PYTHON) -m http.server $(COVERAGE_SERVER_PORT) -d $(COVERAGE_DIR)
#####################
##@ Docker Commands
#####################
docker-build: ## Build docker image
@docker build \
--ssh default \
--platform linux/amd64 \
--tag aibs-informatics-aws-lambda:latest \
--file $(PACKAGE_DIR)/docker/Dockerfile \
$(PACKAGE_DIR)
#####################
##@ Release Commands
#####################
dist: install-release ## Build source and wheel package
@. $(VENV_BIN)/activate;\
$(PYTHON) -m build;
reinstall: obliterate install ## Recreate environment and install
pre-build: obliterate ## Removes existing build environment
build: install ## Runs installation
post-build: lint test ## Run linters and tests
release: pre-build build post-build ## Runs pre-build, build, post-build
run: release
.PHONY: reinstall pre-build build post-build release run