Codebase list pyexcel / 12ef2970-ebbf-40e7-887c-35b763b81e08/main Makefile
12ef2970-ebbf-40e7-887c-35b763b81e08/main

Tree @12ef2970-ebbf-40e7-887c-35b763b81e08/main (Download .tar.gz)

Makefile @12ef2970-ebbf-40e7-887c-35b763b81e08/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