1# Copyright (C) AB Strakt 2# Copyright (C) Jean-Paul Calderone 3# See LICENSE for details. 4 5""" 6pyOpenSSL - A simple wrapper around the OpenSSL library 7""" 8 9__all__ = [ 10 "__author__", 11 "__copyright__", 12 "__email__", 13 "__license__", 14 "__summary__", 15 "__title__", 16 "__uri__", 17 "__version__", 18] 19 20__version__ = "20.0.1" 21 22__title__ = "pyOpenSSL" 23__uri__ = "https://pyopenssl.org/" 24__summary__ = "Python wrapper module around the OpenSSL library" 25__author__ = "The pyOpenSSL developers" 26__email__ = "cryptography-dev@python.org" 27__license__ = "Apache License, Version 2.0" 28__copyright__ = "Copyright 2001-2020 {0}".format(__author__) 29