Skip to content

Commit

Permalink
feat: add a make build command
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandobrito committed May 26, 2023
1 parent 6f8324e commit 5721ee5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ IMAGE=$(REGISTRY)/$(APP_NAME)
SHORT_SHA?=$(shell git rev-parse --short HEAD)
VERSION?=$(SHORT_SHA)

.PHONY: build
build: clean-build
python3 setup.py sdist bdist_wheel

.PHONY: clean-build
clean-build:
rm -rf build dist

.PHONY: install-dev
install-dev:
@echo "Installing it locally with editable mode"
Expand Down

0 comments on commit 5721ee5

Please sign in to comment.