Rajendransp133's picture
Upload 86 files
ac901c7 verified
raw
history blame contribute delete
234 Bytes
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()