Skip to content

Commit d8a9b02

Browse files
author
Yoav Ram
authored
Merge pull request #23 from bamarni/patch-1
Pass utf-8 encoding when opening the README
2 parents 860be86 + 55f4441 commit d8a9b02

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
from io import open
12
from setuptools import setup
23

34
import versioneer
45

5-
with open('README.md') as f:
6+
with open('README.md', encoding="utf8") as f:
67
readme = f.read()
78

89
setup(

0 commit comments

Comments
 (0)