mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-02-12 14:32:35 +08:00
7 lines
134 B
Python
7 lines
134 B
Python
from ._importlib import metadata
|
|
|
|
try:
|
|
__version__ = metadata.version('setuptools')
|
|
except Exception:
|
|
__version__ = 'unknown'
|