__about__.py 835 B

12345678910111213141516171819202122232425262728293031
  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. from __future__ import absolute_import, division, print_function
  5. __all__ = [
  6. "__title__",
  7. "__summary__",
  8. "__uri__",
  9. "__version__",
  10. "__author__",
  11. "__email__",
  12. "__license__",
  13. "__copyright__",
  14. ]
  15. __title__ = "cryptography"
  16. __summary__ = (
  17. "cryptography is a package which provides cryptographic recipes"
  18. " and primitives to Python developers."
  19. )
  20. __uri__ = "https://github.com/pyca/cryptography"
  21. __version__ = "3.2.1"
  22. __author__ = "The cryptography developers"
  23. __email__ = "cryptography-dev@python.org"
  24. __license__ = "BSD or Apache License, Version 2.0"
  25. __copyright__ = "Copyright 2013-2020 {}".format(__author__)