Enforce utf-8 for reading the readme

Fixes failing installation issue #66
This commit is contained in:
nat 2020-05-25 17:53:13 +02:00 committed by GitHub
parent 2f9497e064
commit a68505b80e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ setup(
name="betterproto", name="betterproto",
version="1.2.3", version="1.2.3",
description="A better Protobuf / gRPC generator & library", description="A better Protobuf / gRPC generator & library",
long_description=open("README.md", "r").read(), long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
url="http://github.com/danielgtaylor/python-betterproto", url="http://github.com/danielgtaylor/python-betterproto",
author="Daniel G. Taylor", author="Daniel G. Taylor",