Codebase list pyexcel / 067e8021-aa93-44c4-a15e-2633845462ea/main Makefile
067e8021-aa93-44c4-a15e-2633845462ea/main

Tree @067e8021-aa93-44c4-a15e-2633845462ea/main (Download .tar.gz)

Makefile @067e8021-aa93-44c4-a15e-2633845462ea/mainraw · history · blame

all: test

test:
	bash test.sh

doc:
	bash document.sh

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

format:
	isort -y $(find pyexcel -name "*.py"|xargs echo) $(find tests -name "*.py"|xargs echo)
	black -l 79 pyexcel
	black -l 79 tests
	black -l 79 setup.py
lint:
	bash lint.sh