Merge pull request #75 from mattporritt/python34
explicitly set file open to use utf8 encoding in setup.py
This commit is contained in:
commit
aeaad0c330
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
|
@ -10,7 +10,7 @@ REQUIREMENTS = [
|
|||
|
||||
|
||||
HERE = dirname(abspath(__file__))
|
||||
DESCRIPTION = '\n\n'.join(open(join(HERE, _)).read() for _ in [
|
||||
DESCRIPTION = '\n\n'.join(open(join(HERE, _), encoding="utf8").read() for _ in [
|
||||
'README.rst',
|
||||
'CHANGES.rst',
|
||||
])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue