setup: explicitly specify text mode when reading long_description

main
svalouch 4 years ago
parent 791da33577
commit 45cccdfef5

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from setuptools import setup # type: ignore from setuptools import setup # type: ignore
with open('README.rst', 'r') as fh: with open('README.rst', 'rt') as fh:
long_description = fh.read() long_description = fh.read()
setup( setup(

Loading…
Cancel
Save