Skip to content

Commit a25f2f4

Browse files
committed
Add Makefile for wheel building.
1 parent 4f574ef commit a25f2f4

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Makefile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
PYTHON:=python3
2+
3+
.PHONY: all sdist wheel
4+
5+
all: sdist wheel
6+
7+
sdist:
8+
$(PYTHON) setup.py sdist
9+
10+
wheel:
11+
$(PYTHON) setup.py bdist_wheel

0 commit comments

Comments
 (0)