mirror of
https://github.com/graphql-python/graphene.git
synced 2025-02-02 12:44:15 +03:00
Special characters in README.rst break setup.py on Windows
This commit is contained in:
parent
08c86f3def
commit
3aafe58d4d
3
setup.py
3
setup.py
|
@ -1,4 +1,5 @@
|
|||
import ast
|
||||
import codecs
|
||||
import re
|
||||
import sys
|
||||
|
||||
|
@ -61,7 +62,7 @@ setup(
|
|||
name="graphene",
|
||||
version=version,
|
||||
description="GraphQL Framework for Python",
|
||||
long_description=open("README.rst").read(),
|
||||
long_description=codecs.open("README.rst", "r", "utf-8").read(),
|
||||
url="https://github.com/graphql-python/graphene",
|
||||
author="Syrus Akbary",
|
||||
author_email="me@syrusakbary.com",
|
||||
|
|
Loading…
Reference in New Issue
Block a user