mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-02-23 17:23:40 +00:00
7 lines
138 B
Python
7 lines
138 B
Python
|
import pkg_resources
|
||
|
|
||
|
try:
|
||
|
__version__ = pkg_resources.require('setuptools')[0].version
|
||
|
except Exception:
|
||
|
__version__ = 'unknown'
|