Skip to content

Commit

Permalink
refactor(Makefile): add target to build wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
XuehaiPan committed Jul 17, 2022
1 parent 6e28212 commit b5fc606
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ default: install
install:
$(PYTHON) -m pip install .

build:
$(PYTHON) -m pip install --upgrade pip
$(PYTHON) -m pip install --upgrade setuptools wheel build
$(PYTHON) -m build

# Tools Installation

check_pip_install = $(PYTHON) -m pip show $(1) &>/dev/null || (cd && $(PYTHON) -m pip install $(1) --upgrade)
Expand Down

0 comments on commit b5fc606

Please # to comment.