mirror of
https://github.com/e1ven/Robohash.git
synced 2025-06-23 21:35:02 +00:00
Fix #41, UnicodeDecodeError during setup in Windows
This commit is contained in:
parent
4d567f4352
commit
0d5138d5cb
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