25 lines
552 B
Python
25 lines
552 B
Python
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"
|
|
|
|
__version__ = "0.7.0"
|
|
|
|
__author__ = "The Lemur developers"
|
|
__email__ = "security@netflix.com"
|
|
|
|
__license__ = "Apache License, Version 2.0"
|
|
__copyright__ = "Copyright 2018 {0}".format(__author__)
|