feat(jupyterhub): install buunstack package to kernel image

This commit is contained in:
Masaki Yatsu
2025-08-31 20:43:27 +09:00
parent ddf867d1f1
commit 2480ebae82
15 changed files with 1192 additions and 270 deletions

View File

@@ -0,0 +1,13 @@
"""
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 Stack Team"
__all__ = ["SecretStore", "get_env_from_secrets", "put_env_to_secrets"]