Files
extism/python/Makefile
2023-03-17 13:00:47 -06:00

27 lines
390 B
Makefile

.PHONY: test
prepare:
poetry install
test: prepare
poetry run python -m unittest discover
clean:
rm -rf dist/*
publish: clean prepare
poetry build
poetry run twine upload dist/extism-*.tar.gz
format:
poetry run black extism/ tests/ example.py
lint:
poetry run black --check extism/ tests/ example.py
docs:
poetry run pycco extism/*.py
show-docs: docs
open docs/extism.html