version.py 650 B

12345678910111213141516171819202122232425262728
  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__",
  9. "__copyright__",
  10. "__email__",
  11. "__license__",
  12. "__summary__",
  13. "__title__",
  14. "__uri__",
  15. "__version__",
  16. ]
  17. __version__ = "22.0.0"
  18. __title__ = "pyOpenSSL"
  19. __uri__ = "https://pyopenssl.org/"
  20. __summary__ = "Python wrapper module around the OpenSSL library"
  21. __author__ = "The pyOpenSSL developers"
  22. __email__ = "cryptography-dev@python.org"
  23. __license__ = "Apache License, Version 2.0"
  24. __copyright__ = "Copyright 2001-2020 {0}".format(__author__)