mirror of
https://github.com/e1ven/Robohash.git
synced 2025-06-23 21:35:02 +00:00
Merge pull request #42 from mrts/patch-1
Fix #41, UnicodeDecodeError during setup in Windows
This commit is contained in:
commit
d690273550
2
setup.py
2
setup.py
@ -3,7 +3,7 @@ try:
|
|||||||
except ImportError:
|
except ImportError:
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
with open('README.rst') as file:
|
with open('README.rst', encoding='utf-8') as file:
|
||||||
long_description = file.read()
|
long_description = file.read()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user