You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

version.py 626B

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