mirror of
https://github.com/NVIDIA-NeMo/DataDesigner
synced 2026-05-24 09:48:29 +00:00
17 lines
502 B
Python
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__"]
|