diff options
| -rwxr-xr-x | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -31,7 +31,8 @@ class PyTest(TestCommand): # 'setup.py publish' shortcut. if sys.argv[-1] == 'publish': - os.system('python setup.py sdist upload') + os.system('python setup.py sdist bdist_wheel') + os.system('twine upload dist/*') sys.exit() packages = [ |
