-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMakefile
75 lines (59 loc) · 1.48 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
# Copyright (C) 2019 Richard Hughes <[email protected]>
# SPDX-License-Identifier: BSD-2-Clause-Patent
VENV=./env
PYTHON=$(VENV)/bin/python
PYTEST=$(VENV)/bin/pytest
PYLINT=$(VENV)/bin/pylint
MYPY=$(VENV)/bin/mypy
CODESPELL=$(VENV)/bin/codespell
PIP=$(VENV)/bin/pip
BLACK=$(VENV)/bin/black
STUBGEN=$(VENV)/bin/stubgen
SPHINX_BUILD=$(VENV)/bin/sphinx-build
RUFF=$(VENV)/bin/ruff
setup: requirements.txt
virtualenv ./env
$(VENV)/bin/pip install -r requirements.txt
$(VENV)/bin/pip install pre-commit
$(VENV)/bin/pre-commit install
clean:
rm -rf ./build
rm -rf ./htmlcov
rm -rf ./docs/build
$(PYTEST):
$(PIP) install pytest-cov pylint
$(MYPY):
$(PIP) install mypy
$(STUBGEN):
$(PIP) install stubgen
$(BLACK):
$(PIP) install black
$(RUFF):
$(PIP) install ruff
$(SPHINX_BUILD):
$(PIP) install sphinx sphinx_autodoc_typehints sphinx_rtd_theme
check: $(PYTEST) $(MYPY)
$(MYPY) --check-untyped-defs uswid
$(PYTEST) uswid
$(PYLINT) --rcfile pylintrc uswid/*.py *.py
install:
$(VENV)/bin/pip install .
roundtrip:
PYTHONPATH=. $(VENV)/bin/python ./uswid/cli.py --roundtrip \
--load ./examples/sample.ini \
--save ./roundtrip.cdx.json \
--verbose
blacken: $(BLACK)
find uswid -name '*.py' -exec $(BLACK) {} \;
codespell: $(CODESPELL)
$(CODESPELL) --write-changes --builtin en-GB_to_en-US --skip \
.git,\
.mypy_cache,\
.coverage,\
*.pyc,\
env
ruff: $(RUFF)
$(RUFF) check uswid examples
pkg: $(STUBGEN)
$(STUBGEN) --output . --package uswid
$(PYTHON) setup.py sdist bdist_wheel