lemur/lemur/__about__.py

25 lines
552 B
Python
Raw Normal View History

2015-12-01 18:15:53 +01:00
from __future__ import absolute_import, division, print_function
__all__ = [
2019-05-16 16:57:02 +02:00
"__title__",
"__summary__",
"__uri__",
"__version__",
"__author__",
"__email__",
"__license__",
"__copyright__",
2015-12-01 18:15:53 +01:00
]
__title__ = "lemur"
2019-05-16 16:57:02 +02:00
__summary__ = "Certificate management and orchestration service"
2015-12-01 18:15:53 +01:00
__uri__ = "https://github.com/Netflix/lemur"
2020-11-14 02:37:01 +01:00
__version__ = "0.8.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__)