blob: 359d36e8cba58f624a9ef553b2dbc5a3317beb59 [file] [log] [blame]
Jean-Paul Calderone8671c852011-03-02 19:26:20 -05001# Copyright (C) AB Strakt
2# Copyright (C) Jean-Paul Calderone
3# See LICENSE for details.
Jean-Paul Calderone8b63d452008-03-21 18:31:12 -04004
Jean-Paul Calderone897bc252008-02-18 20:50:23 -05005"""
6pyOpenSSL - A simple wrapper around the OpenSSL library
7"""
Jean-Paul Calderone8b63d452008-03-21 18:31:12 -04008
Hynek Schlawack5bc17cb2015-04-30 19:21:40 +02009__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__)