From d49388f1c7d37dd22539c6cf79693ca08cd0a7a1 Mon Sep 17 00:00:00 2001 From: HitBlast Date: Thu, 8 Aug 2024 14:32:01 +0600 Subject: [PATCH] added new build command --- Makefile | 5 ++++- README.md | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 79039cb..74d03eb 100644 --- a/Makefile +++ b/Makefile @@ -9,4 +9,7 @@ test: @poetry run pytest . install: - @poetry install --sync \ No newline at end of file + @poetry install --sync + +build: + @poetry build --verbose --no-interaction \ No newline at end of file diff --git a/README.md b/README.md index 66b715a..6ed3ccc 100644 --- a/README.md +++ b/README.md @@ -136,6 +136,9 @@ Later, you can run the tests provided with the project using the following comma ```sh # Run unit tests. $ make test # same as `poetry run pytest .` + +# Build sdist and wheel packages for distributing the project. +$ make build # same as `poetry build --verbose --no-interaction` ```