fix: add UTF-8 encoding when reading README.md

This commit is contained in:
Philippe Anel
2025-01-02 10:45:20 +01:00
committed by Barabazs
parent a0eb31019b
commit 940a223219

View File

@ -3,7 +3,7 @@ import os
import pkg_resources
from setuptools import find_packages, setup
with open("README.md") as f:
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(