Merge pull request #67 from danielgtaylor/nat-n-patch-1

Enforce utf-8 for reading the readme in setup.py
This commit is contained in:
Bouke Versteegh 2020-05-25 21:57:12 +02:00 committed by GitHub
commit 2d57f0d122
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ setup(
name="betterproto",
version="1.2.3",
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",
url="http://github.com/danielgtaylor/python-betterproto",
author="Daniel G. Taylor",