Include the tests in the distribution
diff --git a/setup.py b/setup.py
index e2247b3..f7c5deb 100755
--- a/setup.py
+++ b/setup.py
@@ -73,7 +73,8 @@
setup(name='pyOpenSSL', version=__version__,
package_dir = { 'OpenSSL': '.' },
ext_modules = [mkExtension('crypto'), mkExtension('rand'), mkExtension('SSL')],
- py_modules = ['OpenSSL.__init__', 'OpenSSL.tsafe', 'OpenSSL.version'],
+ py_modules = ['OpenSSL.__init__', 'OpenSSL.tsafe', 'OpenSSL.version',
+ 'OpenSSL.test.__init__', 'OpenSSL.test.test_crypto' ],
description = 'Python wrapper module around the OpenSSL library',
author = 'Martin Sjögren, AB Strakt', author_email = 'msjogren@gmail.com',
url = 'http://pyopenssl.sourceforge.net/',