summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJean-Paul Calderone <exarkun@twistedmatrix.com>2014-01-11 11:58:41 -0500
committerJean-Paul Calderone <exarkun@twistedmatrix.com>2014-01-11 11:58:41 -0500
commit4f0467a545de9e4e5e9080472a45fdc1c70bae3c (patch)
tree72fc443cb4a37d75490d1d0b828f0a45cc7a6e56 /setup.py
parent7307cd3c62c6c4b08d3302db1853ea4b3dba2f9a (diff)
downloadpyopenssl-git-4f0467a545de9e4e5e9080472a45fdc1c70bae3c.tar.gz
Lots of Python 3.2 porting work
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index ac53487..7d5dce5 100755
--- a/setup.py
+++ b/setup.py
@@ -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")