Coverage for /home/martinb/.local/share/virtualenvs/camcops/lib/python3.6/site-packages/cryptography/__about__.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
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.
6__all__ = [
7 "__title__",
8 "__summary__",
9 "__uri__",
10 "__version__",
11 "__author__",
12 "__email__",
13 "__license__",
14 "__copyright__",
15]
17__title__ = "cryptography"
18__summary__ = (
19 "cryptography is a package which provides cryptographic recipes"
20 " and primitives to Python developers."
21)
22__uri__ = "https://github.com/pyca/cryptography"
24__version__ = "3.4.7"
26__author__ = "The Python Cryptographic Authority and individual contributors"
27__email__ = "cryptography-dev@python.org"
29__license__ = "BSD or Apache License, Version 2.0"
30__copyright__ = "Copyright 2013-2021 {}".format(__author__)