• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
5from __future__ import absolute_import, division, print_function
6
7__all__ = [
8    "__title__",
9    "__summary__",
10    "__uri__",
11    "__version__",
12    "__author__",
13    "__email__",
14    "__license__",
15    "__copyright__",
16]
17
18__title__ = "cryptography_vectors"
19__summary__ = "Test vectors for the cryptography package."
20
21__uri__ = "https://github.com/pyca/cryptography"
22
23__version__ = "3.3.2"
24
25__author__ = "The cryptography developers"
26__email__ = "cryptography-dev@python.org"
27
28__license__ = "BSD or Apache License, Version 2.0"
29__copyright__ = "Copyright 2013-2021 %s" % __author__
30