diff --git a/setup.py b/setup.py index fa04c6e..5a3bfd3 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def load_reqs(path): req_path = Path(__file__).parent / "requirements.txt" requirements = load_reqs(req_path) -long_description = open(Path(__file__).parent / "README.md").read() +long_description = (Path(__file__).parent / "README.md").read_text(encoding="utf-8") with (Path(__file__).parent / "VERSION").open("r") as fp: version = fp.read().strip()