Skip to content

Commit

Permalink
chore: add some makefile rules for building and testing
Browse files Browse the repository at this point in the history
  • Loading branch information
jolars committed Dec 11, 2023
1 parent 49398ca commit a0c1078
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ all: install
install:
pip install -e .

.PHONY: build
build:
rm -rf dist
python -m build

.PHONY: test-pypi
test-pypi:
python -m twine upload --repository testpypi dist/*

.PHONY: clean
clean:
rm -rf src/*.o src/*.so
Expand Down

0 comments on commit a0c1078

Please sign in to comment.