Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/bcrypt/__about__.py: 100%

12 statements  

« prev     ^ index     » next       coverage.py v7.2.2, created at 2023-03-26 06:36 +0000

1# Author:: Donald Stufft (<donald@stufft.io>) 

2# Copyright:: Copyright (c) 2013 Donald Stufft 

3# License:: Apache License, Version 2.0 

4# 

5# Licensed under the Apache License, Version 2.0 (the "License"); 

6# you may not use this file except in compliance with the License. 

7# You may obtain a copy of the License at 

8# 

9# http://www.apache.org/licenses/LICENSE-2.0 

10# 

11# Unless required by applicable law or agreed to in writing, software 

12# distributed under the License is distributed on an "AS IS" BASIS, 

13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 

14# See the License for the specific language governing permissions and 

15# limitations under the License. 

16from __future__ import absolute_import 

17from __future__ import division 

18from __future__ import unicode_literals 

19 

20__all__ = [ 

21 "__title__", 

22 "__summary__", 

23 "__uri__", 

24 "__version__", 

25 "__author__", 

26 "__email__", 

27 "__license__", 

28 "__copyright__", 

29] 

30 

31__title__ = "bcrypt" 

32__summary__ = "Modern password hashing for your software and your servers" 

33__uri__ = "https://github.com/pyca/bcrypt/" 

34 

35__version__ = "4.0.1" 

36 

37__author__ = "The Python Cryptographic Authority developers" 

38__email__ = "cryptography-dev@python.org" 

39 

40__license__ = "Apache License, Version 2.0" 

41__copyright__ = "Copyright 2013-2022 {0}".format(__author__)