lemur/lemur/__about__.py

19 lines
530 B
Python
Raw Normal View History

2015-12-01 18:15:53 +01:00
from __future__ import absolute_import, division, print_function
__all__ = [
"__title__", "__summary__", "__uri__", "__version__", "__author__",
"__email__", "__license__", "__copyright__",
]
__title__ = "lemur"
__summary__ = ("Certificate management and orchestration service")
__uri__ = "https://github.com/Netflix/lemur"
2018-05-07 18:58:24 +02:00
__version__ = "0.7.0"
2015-12-01 18:15:53 +01:00
__author__ = "The Lemur developers"
__email__ = "security@netflix.com"
__license__ = "Apache License, Version 2.0"
__copyright__ = "Copyright 2018 {0}".format(__author__)