just source dist

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2017-09-20 14:50:06 -04:00
parent 0b2e26eb16
commit ba5c5cbf94
+2 -2
View File
@@ -59,8 +59,8 @@ class UploadCommand(Command):
except FileNotFoundError:
pass
self.status('Building Source distribution & Universal wheel')
os.system('{0} setup.py sdist bdist_wheel --universal'.format(sys.executable))
self.status('Building Source distribution…')
os.system('{0} setup.py sdist'.format(sys.executable))
self.status('Uploading the package to PyPi via Twine…')
os.system('twine upload dist/*')