-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile
165 lines (135 loc) · 4.46 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
# Makefile for Python project
.DELETE_ON_ERROR:
.PHONY: FORCE
.PRECIOUS:
.SUFFIXES:
SHELL:=bash -e -o pipefail -O globstar
SELF:=$(firstword $(MAKEFILE_LIST))
VE_DIR=venv
TEST_DIRS:=tests
DOC_TESTS:=src ./README.md
export DOCKER_BUILDKIT=1
############################################################################
#= BASIC USAGE
default: help
#=> help -- display this help message
help:
@sbin/makefile-extract-documentation "${SELF}"
############################################################################
#= SETUP, INSTALLATION, PACKAGING
#=> devready: create venv, install prerequisites, install pkg in develop mode
.PHONY: devready
devready:
make ${VE_DIR} && source ${VE_DIR}/bin/activate && make develop
@echo '#################################################################################'
@echo '### Do not forget to `source ${VE_DIR}/bin/activate` to use this environment ###'
@echo '#################################################################################'
#=> venv: make a Python 3 virtual environment
${VE_DIR}:
python3 -mvenv $@; \
source $@/bin/activate; \
python3 -m ensurepip --upgrade; \
pip install --upgrade pip setuptools wheel
#=> develop: install package in develop mode
.PHONY: develop
develop:
pip install -e .[dev]
#=> install: install package
.PHONY: install
install:
pip install .
#=> build: make sdist and wheel
.PHONY: build
build: %:
python -m build
############################################################################
#= TESTING
# see test configuration in setup.cfg
#=> cqa: execute code quality tests
cqa:
flake8 src --count --select=E9,F63,F7,F82 --show-source --statistics
isort --profile black --check src
ruff format --check src
bandit -ll -r src
#=> test: execute tests
#=> test-code: test code (including embedded doctests)
#=> test-docs: test example code in docs
#=> test-/tag/ -- run tests marked with /tag/
# TODO: rationalize tags
# find tests -name \*.py | xargs perl -ln0e 'while (m/@pytest.mark.(\w+)/g) {print $1 if not $seen{$1}++}' | sort
# => extra fx issues mapping models normalization parametrize pnd quick regression validation
.PHONY: test test-code test-docs
test:
pytest
test-docs:
pytest docs
test-code:
pytest src
test-%:
pytest -m '$*' src
#=> tox -- run all tox tests
tox:
tox
############################################################################
#= UTILITY TARGETS
#=> reformat: reformat code with ruff/isort and commit
.PHONY: reformat
reformat:
@if ! git diff --cached --exit-code >/dev/null; then echo "Repository not clean" 1>&2; exit 1; fi
ruff format src tests
isort src tests
git commit -a -m "reformatted with ruff and isort"
#=> rename: rename files and substitute content for new repo name
.PHONY: rename
rename:
./sbin/rename-package
#=> docs -- make sphinx docs
.PHONY: docs
docs: develop
# RTD makes json. Build here to ensure that it works.
make -C doc html json
#=> docker-image: build docker image
docker-image:
docker build -t biocommons/seqrepo-rest-service .
TAG=$$(git describe --tags | head -1); if [ -n "$$TAG" ]; then \
docker tag biocommons/seqrepo-rest-service:latest biocommons/seqrepo-rest-service:$$TAG; \
echo "Created biocommons/seqrepo-rest-service:$$TAG"; \
fi
############################################################################
#= CLEANUP
#=> clean: remove temporary and backup files
.PHONY: clean
clean:
rm -frv **/*~ **/*.bak
#=> cleaner: remove files and directories that are easily rebuilt
.PHONY: cleaner
cleaner: clean
rm -frv .cache build dist docs/_build
rm -frv **/__pycache__
rm -frv **/*.egg-info
rm -frv **/*.pyc
rm -frv **/*.orig
rm -frv **/*.rej
#=> cleanest: remove files and directories that require more time/network fetches to rebuild
.PHONY: cleanest
cleanest: cleaner
rm -frv .eggs .tox venv
#=> distclean: remove untracked files and other detritus
.PHONY: distclean
distclean: cleanest
git clean -df
## <LICENSE>
## Copyright 2023 Source Code Committers
##
## Licensed under the Apache License, Version 2.0 (the "License");
## you may not use this file except in compliance with the License.
## You may obtain a copy of the License at
##
## http://www.apache.org/licenses/LICENSE-2.0
##
## Unless required by applicable law or agreed to in writing, software
## distributed under the License is distributed on an "AS IS" BASIS,
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
## See the License for the specific language governing permissions and
## limitations under the License.
## </LICENSE>