From 77d8e7d7b5814c251b06e599376c0a52d1076222 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Sat, 13 Apr 2024 09:09:17 +0200 Subject: [PATCH] Use build for packaging --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index dfd83c4..627e568 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,7 @@ .PHONY: clean publish test docs -dist : - python setup.py sdist --formats=gztar,zip - python setup.py bdist_wheel --python-tag=py3 +dist: + python -m build publish : twine upload dist/*.tar.gz dist/*.whl