mirror of
https://github.com/graphql-python/graphene.git
synced 2025-02-08 23:50:38 +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 ast
|
||||||
|
import codecs
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
@ -61,7 +62,7 @@ setup(
|
||||||
name="graphene",
|
name="graphene",
|
||||||
version=version,
|
version=version,
|
||||||
description="GraphQL Framework for Python",
|
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",
|
url="https://github.com/graphql-python/graphene",
|
||||||
author="Syrus Akbary",
|
author="Syrus Akbary",
|
||||||
author_email="me@syrusakbary.com",
|
author_email="me@syrusakbary.com",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user