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 08c86f3 commit 3aafe58Copy full SHA for 3aafe58
setup.py
@@ -1,4 +1,5 @@
1
import ast
2
+import codecs
3
import re
4
import sys
5
@@ -61,7 +62,7 @@ def run_tests(self):
61
62
name="graphene",
63
version=version,
64
description="GraphQL Framework for Python",
- long_description=open("README.rst").read(),
65
+ long_description=codecs.open("README.rst", "r", "utf-8").read(),
66
url="https://github.com/graphql-python/graphene",
67
author="Syrus Akbary",
68
author_email="me@syrusakbary.com",
0 commit comments