From d9468cbedf2c9179ea736882dd61efbec1fa4a4c Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 28 Aug 2017 23:04:02 -0400 Subject: [PATCH] Update setup.py --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 61a740a..1964a10 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ with codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f: # Load the package's __version__.py module as a dictionary. about = {} -with open(os.path.join(here, NAME, "__version__.py")) as f: +with open(os.path.join(here, NAME, '__version__.py')) as f: exec(f.read(), about) @@ -67,10 +67,10 @@ class PublishCommand(Command): pass self.status('Building Source and Wheel (universal) distribution...') - os.system("{0} setup.py sdist bdist_wheel --universal ".format(sys.executable)) + os.system('{0} setup.py sdist bdist_wheel --universal '.format(sys.executable)) self.status('Uploading the package to PyPi via Twine...') - os.system("twine upload dist/*") + os.system('twine upload dist/*') sys.exit()