Spaces:
Runtime error
Runtime error
File size: 238 Bytes
ef23634 |
1 2 3 4 5 6 7 8 9 10 11 |
import os
import sys
try:
from .version import __version__ # noqa
except ImportError:
version_txt = os.path.join(os.path.dirname(__file__), "version.txt")
with open(version_txt) as f:
__version__ = f.read().strip()
|