Skip to content

Commit

Permalink
Updated Makefile with build and install
Browse files Browse the repository at this point in the history
  • Loading branch information
ankumar committed Aug 14, 2024
1 parent cc4fb6d commit 2500179
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: all format lint test tests
.PHONY: all format lint test coverage build clean install install-wheel

all: help

Expand All @@ -19,3 +19,17 @@ lint:

test:
poetry run pytest tests

build:
poetry build

clean:
rm -rf dist/
rm -rf build/
rm -rf *.egg-info/

install:
poetry install

install-wheel:
pip install dist/javelin_sdk-0.2.6-py3-none-any.whl --force-reinstall

0 comments on commit 2500179

Please sign in to comment.