Files
PGPy-3_13_patch/pgpy/_author.py
Michael Greene 2d6667ee53 just version things
[skip ci]
2017-03-01 12:40:39 -08:00

19 lines
455 B
Python

"""_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"))