From 11e9677d1a1796d00bda9843b3631f55d7068123 Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Thu, 24 Nov 2022 22:29:50 +0100 Subject: [PATCH] Split wheel and tarball dist into separate make cmds --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ce4c1c2..2ad135f 100644 --- a/Makefile +++ b/Makefile @@ -7,9 +7,14 @@ install: build: python3 setup.py build -dist: +tarball: python3 setup.py sdist +wheel: + python3 setup.py bdist_wheel + +dist: tarball wheel + upload: clean dist twine upload dist/*