Coverage for pass_audit/__init__.py: 100%
10 statements
« prev ^ index » next coverage.py v6.5.0, created at 2022-11-16 11:35 +0000
« prev ^ index » next coverage.py v6.5.0, created at 2022-11-16 11:35 +0000
1# -*- encoding: utf-8 -*-
2# pass audit - Password Store Extension (https://www.passwordstore.org/)
3# Copyright (C) 2018-2022 Alexandre PUJOL <alexandre@pujol.io>.
4#
5"""A pass extension for auditing your password repository."""
7__all__ = [
8 '__title__', '__summary__', '__uri__', '__version__', '__author__',
9 '__email__', '__license__', '__copyright__'
10]
12__title__ = 'pass-audit'
13__summary__ = 'A pass extension for auditing your password repository.'
14__uri__ = 'https://github.com/roddhjav/pass-audit'
16__version__ = '1.2'
18__author__ = 'Alexandre Pujol'
19__email__ = 'alexandre@pujol.io'
21__license__ = 'GPL3'
22__copyright__ = f"Copyright 2018-2022 {__author__}"