File size: 300 Bytes
e2812ac
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
Unified OpenEnv package bundling the CLI and core runtime.
"""

from importlib import metadata

__all__ = ["core", "cli"]

try:
    __version__ = metadata.version("openenv")  # type: ignore[arg-type]
except metadata.PackageNotFoundError:  # pragma: no cover - local dev
    __version__ = "0.0.0"