-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
35 lines (27 loc) · 852 Bytes
/
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
# containers/python-build is located on a private registry
# which is known to podman via ~/.config/containers/registries.conf
# containers/python-build is a container with
# build, setuptools_scm, pylint, twine installed via pip3
#
CBIN := podman
CFLAGS := run -it --rm \
--pull always \
-p 8000:8000 \
-v ./:/builds/${PWD##*/} \
-w /builds/${PWD##*/} \
containers/python-build:latest
.PHONY: all help
all: help
package:
${CBIN} ${CFLAGS} pyproject-build --sdist --wheel
install:
pip install .
list:
pip show ${PWD##*/}
lint:
${CBIN} ${CFLAGS} bash -c 'pip install .; pylint --exit-zero -f parseable src/'
serve:
${CBIN} ${CFLAGS} bash -c 'pip install .; mkdocs -v serve -f example/mkdocs.yml -a 0.0.0.0:8000'
help:
@echo -e "Available targets:\n"
@awk -F ':' '$$0~/^\S+:$$/ || $$2 ~ /glr-check/ {print $$1}' Makefile