12 lines
368 B
Python
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__)
|