-
Notifications
You must be signed in to change notification settings - Fork 664
/
Makefile
38 lines (28 loc) · 827 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
36
37
38
.PHONY: venv tests check-black check-flake lint format examples build
PYTHON := venv/bin/python
PIP = venv/bin/pip
venv:
python3 -m venv venv
${PIP} install --upgrade pip
${PIP} install -r requirements.txt
${PIP} install -r requirements-dev.txt
${PIP} install -e .
tests:
${PYTHON} -m pytest
${PYTHON} -m coverage html
check-black:
${PYTHON} -m black --check pdfplumber tests
check-isort:
${PYTHON} -m isort --profile black --check-only pdfplumber tests
check-flake:
${PYTHON} -m flake8 pdfplumber tests
check-mypy:
${PYTHON} -m mypy --strict --implicit-reexport pdfplumber
lint: check-flake check-mypy check-black check-isort
format:
${PYTHON} -m black pdfplumber tests
${PYTHON} -m isort --profile black pdfplumber tests
examples:
${PYTHON} -m nbexec.cli examples/notebooks
build:
${PYTHON} -m build