//I have corrected the error in setup.py by adding encoding='UTF-8' please update it
def read(filename):
"""Read and return filename in root dir of project and return string"""
here = os.path.abspath(os.path.dirname(file))
return codecs.open(os.path.join(here, filename), 'r',encoding='UTF-8').read()
//I have corrected the error in setup.py by adding encoding='UTF-8' please update it def read(filename): """Read and return
filename
in root dir of project and return string""" here = os.path.abspath(os.path.dirname(file)) return codecs.open(os.path.join(here, filename), 'r',encoding='UTF-8').read()