1
Fork 0
mirror of https://github.com/Steffo99/jupyterlab-theme-sophon.git synced 2024-10-16 06:37:25 +00:00
jupyterlab-theme-sophon/jupyterlab_theme_sophon/_version.py
2021-09-01 01:31:14 +02:00

19 lines
458 B
Python

__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()