Skip to content

Commit

Permalink
FIX: Make install work on winodows
Browse files Browse the repository at this point in the history
I think that a character encoding error in the README is causing the error on windows.
  • Loading branch information
scott-huberty committed Oct 2, 2024
1 parent 3d952b3 commit 0ca9d7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 0ca9d7d

Please sign in to comment.