diff --git a/setup.py b/setup.py index 067fdf0..f1fc16d 100644 --- a/setup.py +++ b/setup.py @@ -121,7 +121,7 @@ def run(self): config.set('pypi', 'repository', 'https://pypi.python.org/pypi') config.set('pypi', 'username', self.pypi_user) config.set('pypi', 'password', self.pypi_pass) - with open(os.path.expanduser('!/.pypirc'), 'wb') as pypirc_file: + with open(os.path.expanduser('~/.pypirc'), 'wb') as pypirc_file: config.write(pypirc_file) call('twine upload dist/*')