diff options
author | Sebastian Deiss <sdeiss@haw-landshut.de> | 2014-04-07 17:37:37 +0200 |
---|---|---|
committer | Sebastian Deiss <sdeiss@haw-landshut.de> | 2014-04-07 17:37:37 +0200 |
commit | 550f0b99eadf8a366253046acdd944709214123f (patch) | |
tree | 858e8a5a89a93b099f4282da4e67ae446325a3ac /setup.py | |
parent | 8e3561b5b123a993b7f19d0b1ce5c5e67e370cbc (diff) | |
parent | 57e647341f416c879ae3841c9a7be50c52a21327 (diff) |
Merge branch 'paramiko:master' into gssapi-py3-support
Conflicts:
dev-requirements.txt
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -40,9 +40,10 @@ import sys try: from setuptools import setup kw = { - 'install_requires': ['pycrypto >= 2.1, != 2.4', - 'ecdsa', - ], + 'install_requires': [ + 'pycrypto >= 2.1, != 2.4', + 'ecdsa', + ], } except ImportError: from distutils.core import setup |