diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5422614 --- /dev/null +++ b/Makefile @@ -0,0 +1,20 @@ +PRJ = pymlconf +PIP = pip3 + +.PHONY: env +env: + $(PIP) install -r requirements-dev.txt + $(PIP) install -e . + +.PHONY: cover +cover: + pytest --cov=$(PRJ) tests + + +.PHONY: lint +lint: + pylama + +.PHONY: dist +dist: + python setup.py sdist