mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-09-26 08:33:51 +00:00

* update packaging * fix author metadata * add newline * add empty readme * fix path to pipeline files * fix pylint job * fix metadata
11 lines
221 B
Python
11 lines
221 B
Python
import logging
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
__version__ = "0.0.0"
|
|
try:
|
|
__version__ = open(Path(__file__).parent.parent / "VERSION.txt", "r").read()
|
|
except Exception as e:
|
|
logging.exception("No VERSION.txt found!")
|