python-benedict/benedict/__init__.py

20 lines
323 B
Python
Raw Normal View History

from benedict.dicts import benedict
from benedict.metadata import (
2021-10-12 12:27:35 +00:00
__author__,
__copyright__,
__description__,
__license__,
__title__,
__version__,
)
2022-03-24 12:26:18 +00:00
__all__ = [
"benedict",
"__author__",
"__copyright__",
"__description__",
"__license__",
"__title__",
"__version__",
]