13 lines
334 B
Python
13 lines
334 B
Python
"""
|
|
buunstack - Python package for buun-stack Jupyter environment
|
|
"""
|
|
|
|
from .secrets import SecretStore, get_env_from_secrets, put_env_to_secrets
|
|
|
|
try:
|
|
from ._version import __version__
|
|
except ImportError:
|
|
__version__ = "unknown"
|
|
__author__ = "Buun ch."
|
|
|
|
__all__ = ["SecretStore", "get_env_from_secrets", "put_env_to_secrets"] |