Skip to content

Commit ee581bf

Browse files
committed
Add support for building a wheel
1 parent ce14986 commit ee581bf

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

Makefile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
clean:
2+
rm -rf dist/ build/
3+
4+
package: clean
5+
pip install wheel
6+
python setup.py sdist bdist_wheel
7+
8+
publish: package
9+
pip install twine
10+
twine upload dist/*
11+
12+
.PHONY: clean package publish

setup.cfg

+3
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
[metadata]
22
description = README.md
3+
4+
[bdist_wheel]
5+
universal = 1

0 commit comments

Comments
 (0)