1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
PYTHON := python3 all: build build: $(PYTHON) setup.py build lint: $(PYTHON) -mtox -e flake8 test: $(PYTHON) -mtox test-quick: $(PYTHON) -mtox -e black,flake8,pytest-quick black-check: $(PYTHON) -mtox -e black black: $(PYTHON) -mblack $(CURDIR) install: build $(PYTHON) setup.py install clean: $(PYTHON) setup.py clean $(RM) -r build MANIFEST |