summaryrefslogtreecommitdiff
path: root/src/leap/mx/vendor/pgpy/_author.py
blob: ae17b45715bd2aef1da7ec7924686407a96039e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""_author.py

Canonical location for authorship information
__version__ is a PEP-386 compliant version string,
making use of distutils.version.LooseVersion
"""

from distutils.version import LooseVersion

__all__ = ['__author__',
           '__copyright__',
           '__license__',
           '__version__']

__author__ = "Michael Greene"
__copyright__ = "Copyright (c) 2014 Michael Greene"
__license__ = "BSD"
__version__ = str(LooseVersion("0.4.1"))