File: __init__.py

package info (click to toggle)
pass-audit 1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 396 kB
  • sloc: python: 798; makefile: 41; sh: 17
file content (22 lines) | stat: -rw-r--r-- 671 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
# pass audit - Password Store Extension (https://www.passwordstore.org/)
# Copyright (C) 2018-2022 Alexandre PUJOL <alexandre@pujol.io>.
#
"""A pass extension for auditing your password repository."""

__all__ = [
    '__title__', '__summary__', '__uri__', '__version__', '__author__',
    '__email__', '__license__', '__copyright__'
]

__title__ = 'pass-audit'
__summary__ = 'A pass extension for auditing your password repository.'
__uri__ = 'https://github.com/roddhjav/pass-audit'

__version__ = '1.2'

__author__ = 'Alexandre Pujol'
__email__ = 'alexandre@pujol.io'

__license__ = 'GPL3'
__copyright__ = f"Copyright 2018-2022 {__author__}"