From 19c38b98d4f561a1f4f88099ecfbf511179d57d8 Mon Sep 17 00:00:00 2001 From: Andy Shapiro Date: Tue, 11 Apr 2023 22:31:02 -0400 Subject: [PATCH] update build commands to flit --- Makefile | 2 +- make.bat | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a3df34f..540d5b7 100644 --- a/Makefile +++ b/Makefile @@ -33,5 +33,5 @@ coverage: ## Generate coverage report @coverage html build: clean ## Build python wheel package - @python setup.py bdist_wheel + @flit build @ls -l dist diff --git a/make.bat b/make.bat index 89f640f..ba3a3d3 100644 --- a/make.bat +++ b/make.bat @@ -38,6 +38,6 @@ goto :eof :build rmdir /s /q .\build rmdir /s /q .\dist -python setup.py bdist_wheel +flit build dir .\dist goto :eof