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` ```