"...git@developer.sourcefind.cn:modelzoo/solov2-pytorch.git" did not exist on "441015ea71e52d5bc4293d7e32a13142b4ff6087"
Commit c481e86d authored by Guoxin's avatar Guoxin Committed by liuzhe-lz
Browse files

BUG FIX: define read file encoding as utf-8 (#1508)

parent aa4bb1f6
......@@ -40,7 +40,7 @@ for (dirpath, dirnames, filenames) in walk('./nni'):
files = [path.normpath(path.join(dirpath, filename)) for filename in filenames]
data_files.append((path.normpath(dirpath), files))
with open('../../README.md', 'r') as fh:
with open('../../README.md', 'r', encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment