~davide-cst00/uftp/0.2

« back to all changes in this revision

Viewing changes to cryptography/__about__.py

  • Committer: Davide Costa
  • Date: 2018-09-27 12:05:00 UTC
  • Revision ID: davide.cst00@gmail.com-20180927120500-wyjvfog77f5u2gyk
Bump cryptograpy to version 1.7.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
5
from __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"
 
13
__summary__ = ("cryptography is a package which provides cryptographic recipes"
 
14
               " and primitives to Python developers.")
 
15
__uri__ = "https://github.com/pyca/cryptography"
 
16
 
 
17
__version__ = "1.7.1"
 
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-2016 {0}".format(__author__)