DataDesigner/src/data_designer/__init__.py
2026-01-15 14:51:54 -07:00

17 lines
502 B
Python

# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
from __future__ import annotations
try:
from data_designer._version import __version__
except ImportError:
# Fallback for editable installs without build
try:
from importlib.metadata import version
__version__ = version("data-designer")
except Exception:
__version__ = "0.0.0.dev0+unknown"
__all__ = ["__version__"]