import os
import sys
def get_version(dicdir):
vpath = os.path.join(dicdir, 'version')
with open(vpath) as vfile:
return vfile.read().strip()
_curdir = os.path.dirname(__file__)
# This will be used elsewhere to initialize the tagger
DICDIR = os.path.join(_curdir, 'dicdir')
VERSION = get_version(DICDIR)
Back to Directory