14 lines
197 B
Makefile
14 lines
197 B
Makefile
SOURCE_DIRS := bin/ etherpump/
|
|
|
|
publish:
|
|
@rm -rf dist
|
|
@python setup.py bdist_wheel
|
|
@twine upload dist/*
|
|
|
|
format:
|
|
@black $(SOURCE_DIRS)
|
|
@isort -rc $(SOURCE_DIRS)
|
|
|
|
lint:
|
|
@flake8 $(SOURCE_DIRS)
|