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__", "__summary__", "__uri__", "__version__", "__author__", 9 "__email__", "__license__", "__copyright__", 10] 11 12__title__ = "cryptography_vectors" 13__summary__ = "Test vectors for the cryptography package." 14 15__uri__ = "https://github.com/pyca/cryptography" 16 17__version__ = "2.5" 18 19__author__ = "The cryptography developers" 20__email__ = "cryptography-dev@python.org" 21 22__license__ = "BSD or Apache License, Version 2.0" 23__copyright__ = "Copyright 2013-2017 %s" % __author__ 24