Codebase list python-lml / a9aa4a58-8224-40d2-9d60-4f5189a18b8e/upstream Makefile
a9aa4a58-8224-40d2-9d60-4f5189a18b8e/upstream

Tree @a9aa4a58-8224-40d2-9d60-4f5189a18b8e/upstream (Download .tar.gz)

Makefile @a9aa4a58-8224-40d2-9d60-4f5189a18b8e/upstreamraw · 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