Merge pull request #351 from OpenKMIP/feat/add-enum-import

Update the kmip package to allow importing enums globally
This commit is contained in:
Peter Hamilton 2017-10-09 10:19:10 -04:00 committed by GitHub
commit 0a04424e6b
1 changed files with 8 additions and 1 deletions

View File

@ -16,6 +16,8 @@
import os
import re
from kmip.core import enums
# Dynamically set __version__
version_path = os.path.join(os.path.dirname(
os.path.realpath(__file__)), 'version.py')
@ -24,4 +26,9 @@ with open(version_path, 'r') as version_file:
__version__ = mo.group(1)
__all__ = ['core', 'demos', 'services']
__all__ = [
'core',
'demos',
'enums',
'services'
]