mirror of
https://github.com/danielmiessler/Fabric.git
synced 2026-02-12 15:05:10 -05:00
7 lines
161 B
Python
7 lines
161 B
Python
from ._importlib import metadata
|
|
|
|
try:
|
|
__version__ = metadata.version('setuptools') or '0.dev0+unknown'
|
|
except Exception:
|
|
__version__ = '0.dev0+unknown'
|