Jean-Paul Calderone | 8671c85 | 2011-03-02 19:26:20 -0500 | [diff] [blame] | 1 | # Copyright (C) AB Strakt |
| 2 | # Copyright (C) Jean-Paul Calderone |
| 3 | # See LICENSE for details. |
Jean-Paul Calderone | 8b63d45 | 2008-03-21 18:31:12 -0400 | [diff] [blame] | 4 | |
Jean-Paul Calderone | 897bc25 | 2008-02-18 20:50:23 -0500 | [diff] [blame] | 5 | """ |
| 6 | pyOpenSSL - A simple wrapper around the OpenSSL library |
| 7 | """ |
Jean-Paul Calderone | 8b63d45 | 2008-03-21 18:31:12 -0400 | [diff] [blame] | 8 | |
Hynek Schlawack | 5bc17cb | 2015-04-30 19:21:40 +0200 | [diff] [blame^] | 9 | __all__ = [ |
| 10 | "__author__", "__copyright__", "__email__", "__license__", "__summary__", |
| 11 | "__title__", "__uri__", "__version__", |
| 12 | ] |
| 13 | |
| 14 | __version__ = "0.15.1" |
| 15 | |
| 16 | __title__ = "pyOpenSSL" |
| 17 | __uri__ = "https://github.com/pyca/pyopenssl" |
| 18 | __summary__ = "Python wrapper module around the OpenSSL library" |
| 19 | __author__ = "The pyOpenSSL developers" |
| 20 | __email__ = "cryptography-dev@python.org" |
| 21 | __license__ = "Apache License, Version 2.0" |
| 22 | __copyright__ = "Copyright 2001-2015 {0}".format(__author__) |