__about__.py 805 B

123456789101112131415161718192021222324252627282930
  1. # This file is dual licensed under the terms of the Apache License, Version
  2. # 2.0, and the BSD License. See the LICENSE file in the root of this repository
  3. # for complete details.
  4. __all__ = [
  5. "__title__",
  6. "__summary__",
  7. "__uri__",
  8. "__version__",
  9. "__author__",
  10. "__email__",
  11. "__license__",
  12. "__copyright__",
  13. ]
  14. __title__ = "cryptography"
  15. __summary__ = (
  16. "cryptography is a package which provides cryptographic recipes"
  17. " and primitives to Python developers."
  18. )
  19. __uri__ = "https://github.com/pyca/cryptography"
  20. __version__ = "3.4.8"
  21. __author__ = "The Python Cryptographic Authority and individual contributors"
  22. __email__ = "cryptography-dev@python.org"
  23. __license__ = "BSD or Apache License, Version 2.0"
  24. __copyright__ = "Copyright 2013-2021 {}".format(__author__)