etherpump/Makefile

14 lines
197 B
Makefile
Raw Normal View History

2019-09-27 23:14:30 +02:00
SOURCE_DIRS := bin/ etherpump/
2019-09-25 21:46:27 +02:00
publish:
@rm -rf dist
@python setup.py bdist_wheel
@twine upload dist/*
2019-09-27 23:14:30 +02:00
format:
@black $(SOURCE_DIRS)
@isort -rc $(SOURCE_DIRS)
lint:
@flake8 $(SOURCE_DIRS)