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"
19__summary__ = (
20    "cryptography is a package which provides cryptographic recipes"
21    " and primitives to Python developers."
22)
23__uri__ = "https://github.com/pyca/cryptography"
24
25__version__ = "3.3.2"
26
27__author__ = "The cryptography developers"
28__email__ = "cryptography-dev@python.org"
29
30__license__ = "BSD or Apache License, Version 2.0"
31__copyright__ = "Copyright 2013-2021 {}".format(__author__)
32