From 0ca9d7d913eb5f0b6f04e259053a3511d43989fd Mon Sep 17 00:00:00 2001 From: Scott Huberty Date: Wed, 2 Oct 2024 10:18:26 -0700 Subject: [PATCH] FIX: Make install work on winodows I think that a character encoding error in the README is causing the error on windows. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a8fb55d..38828c9 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ extras_require[extra] = requirements_extra this_directory = Path(__file__).parent -long_description = (this_directory / "README.md").read_text() +long_description = (this_directory / "README.md").read_text(encoding="utf-8") qc_entry_point = ["pylossless_qc=pylossless.dash.pylossless_qc:main"] setup(