16 lines
310 B
Makefile
16 lines
310 B
Makefile
# SPDX-FileCopyrightText: 2023 Jeff Epler <jepler@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
.PHONY: mypy
|
|
mypy: venv/bin/mypy
|
|
venv/bin/mypy
|
|
|
|
# Update CONTRIBUTING.md if these commands change
|
|
venv/bin/mypy:
|
|
python -mvenv venv
|
|
venv/bin/pip install -r requirements-dev.txt
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf venv
|