diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2016-02-27 17:20:42 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2016-02-27 17:20:42 -0800 |
commit | 9855de91b881e66f13440a7b50225c52670e9e22 (patch) | |
tree | 87e1bc1162db7f5e71ad8f35739a7cc59d6dd659 | |
parent | 1919014fa649d32dec4039f2b8c115233c082418 (diff) |
Remove whitespace in install_requires to avoid potential setuptools bugs
Fixes #697
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,7 @@ try: from setuptools import setup kw = { 'install_requires': [ - 'pycrypto >= 2.1, != 2.4', + 'pycrypto>=2.1,!=2.4', 'ecdsa', ], } |