mirror of
https://github.com/graphql-python/graphene.git
synced 2025-02-02 12:44:15 +03:00
Now setup.py works on Windows other tools have trouble with PKG-INFO. Forcing long_description to ASCII.
This commit is contained in:
parent
3aafe58d4d
commit
2c43a2ae0a
2
setup.py
2
setup.py
|
@ -62,7 +62,7 @@ setup(
|
||||||
name="graphene",
|
name="graphene",
|
||||||
version=version,
|
version=version,
|
||||||
description="GraphQL Framework for Python",
|
description="GraphQL Framework for Python",
|
||||||
long_description=codecs.open("README.rst", "r", "utf-8").read(),
|
long_description=codecs.open("README.rst", "r", encoding="ascii", errors="replace").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