From 4d5ef4aad5ddca1e5a30ed7a4734f2d307f84abf Mon Sep 17 00:00:00 2001 From: pylover Date: Thu, 4 Nov 2021 22:53:25 +0330 Subject: [PATCH] Makefile --- Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Makefile 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