Files
dataelement--bisheng/src/backend/bisheng/__init__.py
T
2026-07-13 13:36:36 +08:00

12 lines
368 B
Python

from importlib import metadata
# from bisheng.processing.process import load_flow_from_json # noqa: E402
try:
# SetujuciGo to automatic modification
__version__ = '2.4.0'
except metadata.PackageNotFoundError:
# Case where package metadata is not available.
__version__ = ''
del metadata # optional, avoids polluting the results of dir(__package__)