Codebase list python-lml / run/efd8d73f-28f1-46d4-af9c-7557809fb9fc/main Makefile
run/efd8d73f-28f1-46d4-af9c-7557809fb9fc/main

Tree @run/efd8d73f-28f1-46d4-af9c-7557809fb9fc/main (Download .tar.gz)

Makefile @run/efd8d73f-28f1-46d4-af9c-7557809fb9fc/mainraw · history · blame

all: test

test:
	bash test.sh

document:
	python setup.py install
	sphinx-build -b html docs/source/ docs/build

spelling:
	sphinx-build -b spelling docs/source/ docs/build/spelling

uml:
	plantuml -tsvg -o ../_static/images/ docs/source/uml/*.uml

format:
	isort -y $(find lml -name "*.py"|xargs echo) $(find tests -name "*.py"|xargs echo)
	black -l 79 lml
	black -l 79 tests
	black -l 79 examples