Skip to content

Commit 4807e00

Browse files
committed
Set up wheel distribution support
1 parent 128bda5 commit 4807e00

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[wheel]
2+
universal = 1

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ def get_package_data(package):
4545

4646
if sys.argv[-1] == 'publish':
4747
os.system("python setup.py sdist upload")
48+
os.system("python setup.py bdist_wheel upload")
4849
print("You probably want to also tag the version now:")
4950
print(" git tag -a %s -m 'version %s'" % (version, version))
5051
print(" git push --tags")

0 commit comments

Comments
 (0)