Skip to content

Commit

Permalink
Add recipe for creating package tar file
Browse files Browse the repository at this point in the history
  • Loading branch information
xofbd committed Apr 3, 2024
1 parent 6ff8527 commit 8c96b0b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ install: $(VENV)/bin/activate
.PHONY: wheel
wheel: dist/$(PACKAGE)-$(VERSION)-py3-none-any.whl

dist/$(PACKAGE)-$(VERSION)-py3-none-any.whl: $(VENV)/bin/activate
dist/$(PACKAGE)-$(VERSION)-py3-none-any.whl dist/$(PACKAGE)-$(VERSION).tar.gz: $(VENV)/bin/activate
$(ACTIVATE_VENV) && python3 -m build
mv dist/$(PACKAGE)-$(VERSION_UPSTREAM)-py3-none-any.whl dist/$(PACKAGE)-$(VERSION)-py3-none-any.whl
mv dist/$(PACKAGE)-$(VERSION_UPSTREAM).tar.gz dist/$(PACKAGE)-$(VERSION).tar.gz

.PHONY: launch
launch:
Expand Down

0 comments on commit 8c96b0b

Please sign in to comment.