From f410f7d302ab59824553879bcf04633366a3f7c4 Mon Sep 17 00:00:00 2001 From: Pavle Portic Date: Thu, 14 Oct 2021 00:03:11 +0200 Subject: [PATCH] Add build to makefile and wheel to dev requirements --- makefile | 3 +++ requirements-dev.txt | 1 + 2 files changed, 4 insertions(+) diff --git a/makefile b/makefile index 084a17c..b8d47b3 100644 --- a/makefile +++ b/makefile @@ -25,6 +25,9 @@ validate: flake8 mypy isort coverage: python -m pytest --cov $(CURDIR)/$(NAME) --cov-report html +build: + python setup.py sdist bdist_wheel + clean: rm -rf $(CURDIR)/build rm -rf $(CURDIR)/dist diff --git a/requirements-dev.txt b/requirements-dev.txt index 908a590..0eeec3a 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -4,3 +4,4 @@ jedi==0.* mypy==0.* pytest==6.2.* pytest-mock==3.6.* +wheel==0.37.*