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.
2 parents 88d68fa + 2bc7699 commit ae7a5d7Copy full SHA for ae7a5d7
setup.py
@@ -1,4 +1,5 @@
1
import ast
2
+import codecs
3
import re
4
import sys
5
@@ -61,7 +62,9 @@ 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(
66
+ "README.rst", "r", encoding="ascii", errors="replace"
67
+ ).read(),
68
url="https://github.com/graphql-python/graphene",
69
author="Syrus Akbary",
70
author_email="me@syrusakbary.com",
0 commit comments