2018-08-21 14:21:49 +00:00
|
|
|
PYTHON=python3
|
|
|
|
SETUP=$(PYTHON) setup.py
|
|
|
|
|
|
|
|
EXCLUDES=.vscode
|
2018-09-03 13:44:38 +00:00
|
|
|
STYLE_TARGETS=trezorlib trezorctl setup.py
|
2018-08-21 14:21:49 +00:00
|
|
|
EXCLUDE_TARGETS=trezorlib/messages
|
|
|
|
|
|
|
|
all: build
|
|
|
|
|
|
|
|
build:
|
|
|
|
$(SETUP) build
|
|
|
|
|
|
|
|
install:
|
|
|
|
$(SETUP) install
|
|
|
|
|
|
|
|
clean:
|
|
|
|
git clean -dfx -e $(EXCLUDES)
|
|
|
|
|
|
|
|
style:
|
|
|
|
black $(STYLE_TARGETS)
|
|
|
|
isort --apply --recursive $(STYLE_TARGETS) --skip-glob "*/$(EXCLUDE_TARGETS)/*"
|
2018-09-03 13:38:50 +00:00
|
|
|
autoflake -i --remove-all-unused-imports -r $(STYLE_TARGETS) --exclude "$(EXCLUDE_TARGETS)"
|
2018-08-21 14:21:49 +00:00
|
|
|
|
|
|
|
stylecheck:
|
|
|
|
black --check $(STYLE_TARGETS)
|
2018-08-21 14:53:17 +00:00
|
|
|
isort --diff --check-only --recursive $(STYLE_TARGETS) --skip-glob "*/$(EXCLUDE_TARGETS)/*"
|
2018-08-21 14:21:49 +00:00
|
|
|
flake8
|
2018-09-03 13:38:50 +00:00
|
|
|
|
|
|
|
.PHONY: all build install clean style stylecheck
|