Spaces:
Sleeping
Sleeping
File size: 234 Bytes
ac901c7 |
1 2 3 4 5 6 7 8 9 |
import os
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()
|