python-compute/Makefile
2023-09-23 21:24:56 +03:00

18 lines
281 B
Makefile

SRC = computelib/
all: build
build:
poetry build
clean:
[ -d dist/ ] && rm -rf dist/ || true
find . -type d -name __pycache__ -exec rm -rf {} \; > /dev/null 2>&1 || true
format:
isort --lai 2 $(SRC)
autopep8 -riva --experimental --ignore e255 $(SRC)
lint:
pylint $(SRC)