We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bd79af commit 4fc1d79Copy full SHA for 4fc1d79
Makefile
@@ -1,8 +1,11 @@
1
-publish:
2
- python setup.py sdist upload
+dist: clean
+ python setup.py sdist bdist_wheel
3
+
4
+publish: dist
5
+ twine upload -s dist/*
6
7
clean:
8
rm -rf *.egg-info
9
rm -rf dist
10
-.PHONY: publish clean
11
+.PHONY: dist publish clean
setup.cfg
@@ -0,0 +1,2 @@
+[bdist_wheel]
+universal = 1
0 commit comments