Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

24 rader
814 B

  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__", "__summary__", "__uri__", "__version__", "__author__",
  7. "__email__", "__license__", "__copyright__",
  8. ]
  9. __title__ = "cryptography"
  10. __summary__ = ("cryptography is a package which provides cryptographic recipes"
  11. " and primitives to Python developers.")
  12. __uri__ = "https://github.com/pyca/cryptography"
  13. __version__ = "2.7"
  14. __author__ = "The cryptography developers"
  15. __email__ = "cryptography-dev@python.org"
  16. __license__ = "BSD or Apache License, Version 2.0"
  17. __copyright__ = "Copyright 2013-2017 {}".format(__author__)