1
Fork 0
mirror of https://github.com/Steffo99/jupyterlab-theme-sophon.git synced 2024-11-22 16:14:28 +00:00
jupyterlab-theme-sophon/jupyterlab_theme_sophon/_version.py

20 lines
458 B
Python
Raw Normal View History

2021-08-31 23:31:14 +00:00
__all__ = ['__version__']
def _fetchVersion():
import json
import os
here = os.path.abspath(os.path.dirname(__file__))
for d, _, _ in os.walk(here):
try:
with open(os.path.join(d, 'package.json')) as f:
return json.load(f)['version']
except FileNotFoundError:
pass
raise FileNotFoundError('Could not find package.json under dir {}'.format(here))
__version__ = _fetchVersion()