debian-python-lml/Makefile

21 lines
400 B
Makefile
Raw Normal View History

2017-04-04 09:53:11 +02:00
all: test
test:
bash test.sh
document:
2017-05-20 13:45:30 +02:00
python setup.py install
2017-05-19 23:43:19 +02:00
sphinx-build -b html docs/source/ docs/build
2017-05-19 10:51:54 +02:00
spelling:
sphinx-build -b spelling docs/source/ docs/build/spelling
2017-05-20 13:45:30 +02:00
uml:
2017-05-20 14:38:04 +02:00
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