10c675d534
* add license header to modules * check license header at linting time
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"
|