setup.py: Explicitly set the file encoding of the readme.

This commit is contained in:
Damir Jelić 2019-07-26 15:09:25 +02:00
parent 94fa30a56e
commit 83f749d486

View File

@ -2,7 +2,7 @@
from setuptools import find_packages, setup
with open('README.md') as f:
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(