diff options
author | Jean-Paul Calderone <exarkun@twistedmatrix.com> | 2014-01-11 11:58:41 -0500 |
---|---|---|
committer | Jean-Paul Calderone <exarkun@twistedmatrix.com> | 2014-01-11 11:58:41 -0500 |
commit | 4f0467a545de9e4e5e9080472a45fdc1c70bae3c (patch) | |
tree | 72fc443cb4a37d75490d1d0b828f0a45cc7a6e56 /setup.py | |
parent | 7307cd3c62c6c4b08d3302db1853ea4b3dba2f9a (diff) | |
download | pyopenssl-git-4f0467a545de9e4e5e9080472a45fdc1c70bae3c.tar.gz |
Lots of Python 3.2 porting work
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -34,7 +34,7 @@ setup(name='pyOpenSSL', version=__version__, maintainer_email = 'exarkun@twistedmatrix.com', url = 'https://github.com/pyca/pyopenssl', license = 'APL2', - install_requires=["cryptography>=0.1"], + install_requires=["cryptography>=0.1", "six>=1.5.2"], long_description = """\ High-level wrapper around a subset of the OpenSSL library, includes * SSL.Connection objects, wrapping the methods of Python's portable @@ -60,4 +60,4 @@ High-level wrapper around a subset of the OpenSSL library, includes 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: System :: Networking', ], - test_suite="OpenSSL.test") + test_suite="OpenSSL") |