We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e386cd commit 728d5daCopy full SHA for 728d5da
setup.py
@@ -4,6 +4,7 @@
4
.. _github: https://www.github.com/snide/sphinx_rtd_theme
5
6
"""
7
+from io import open
8
from setuptools import setup
9
from sphinx_rtd_theme import __version__
10
@@ -16,7 +17,7 @@
16
17
author='Dave Snider',
18
author_email='[email protected]',
19
description='Read the Docs theme for Sphinx',
- long_description=open('README.rst').read(),
20
+ long_description=open('README.rst', encoding='utf-8').read(),
21
zip_safe=False,
22
packages=['sphinx_rtd_theme'],
23
package_data={'sphinx_rtd_theme': [
0 commit comments