We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce14986 commit ee581bfCopy full SHA for ee581bf
Makefile
@@ -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
@@ -1,2 +1,5 @@
[metadata]
description = README.md
+[bdist_wheel]
+universal = 1
0 commit comments