mirror of
https://github.com/deepset-ai/haystack.git
synced 2026-01-21 20:23:52 +00:00
11 lines
266 B
Python
11 lines
266 B
Python
# SPDX-FileCopyrightText: 2022-present deepset GmbH <info@deepset.ai>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
from importlib import metadata
|
|
|
|
try:
|
|
__version__ = str(metadata.version("haystack-ai"))
|
|
except metadata.PackageNotFoundError:
|
|
__version__ = "main"
|