19 lines
533 B
Python
19 lines
533 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.6.0dev"
|
|
|
|
__author__ = "The Lemur developers"
|
|
__email__ = "security@netflix.com"
|
|
|
|
__license__ = "Apache License, Version 2.0"
|
|
__copyright__ = "Copyright 2017 {0}".format(__author__)
|