Coverage for pass_import/__about__.py: 100%
9 statements
« prev ^ index » next coverage.py v7.4.3, created at 2024-02-26 12:11 +0000
« prev ^ index » next coverage.py v7.4.3, created at 2024-02-26 12:11 +0000
1# -*- encoding: utf-8 -*-
2# pass import - Passwords importer swiss army knife
3# Copyright (C) 2017-2024 Alexandre PUJOL <alexandre@pujol.io>.
4#
6__all__ = [
7 '__title__', '__summary__', '__uri__', '__version__', '__author__',
8 '__email__', '__license__', '__copyright__'
9]
11__title__ = 'pass-import'
12__summary__ = ('A pass extension for importing data from most of '
13 'the existing password manager.')
14__uri__ = 'https://github.com/roddhjav/pass-import'
16__version__ = '3.5'
18__author__ = 'Alexandre Pujol'
19__email__ = 'alexandre@pujol.io'
21__license__ = 'GPL3'
22__copyright__ = f'Copyright 2017-2020 {__author__}'