python-compute/Makefile

18 lines
281 B
Makefile
Raw Normal View History

2023-09-23 21:24:56 +03:00
SRC = computelib/
2023-08-24 22:36:12 +03:00
2023-06-17 20:07:50 +03:00
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
2023-08-24 22:36:12 +03:00
format:
isort --lai 2 $(SRC)
autopep8 -riva --experimental --ignore e255 $(SRC)
lint:
pylint $(SRC)