We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 22ffeaf + 725bde2 commit d8803a3Copy full SHA for d8803a3
setup.py
@@ -59,6 +59,9 @@ def get_package_data(package):
59
60
61
if sys.argv[-1] == 'publish':
62
+ if os.system("pip freeze | grep wheel"):
63
+ print("wheel not installed.\nUse `pip install wheel`.\nExiting.")
64
+ sys.exit()
65
os.system("python setup.py sdist upload")
66
os.system("python setup.py bdist_wheel upload")
67
print("You probably want to also tag the version now:")
0 commit comments