Codebase list python-lml / e463f0ce-3231-45f3-baf4-ab5095f6207b/upstream Makefile
e463f0ce-3231-45f3-baf4-ab5095f6207b/upstream

Tree @e463f0ce-3231-45f3-baf4-ab5095f6207b/upstream (Download .tar.gz)

Makefile @e463f0ce-3231-45f3-baf4-ab5095f6207b/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