Skip to content

Commit

Permalink
Merge pull request #67 from instadeepai/fix/readme-encoding
Browse files Browse the repository at this point in the history
Fix: readme encoding
  • Loading branch information
RuanJohn authored Nov 4, 2024
2 parents ba0f8a6 + 09e3c6a commit 5675ad6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ def _parse_requirements(path: str) -> List[str]:
name="id-marl-eval",
version=version,
description="A Python library for Multi-Agent Reinforcement Learning evaluation.",
long_description=open(os.path.join(_CURRENT_DIR, "README.md")).read(),
long_description=open(
os.path.join(_CURRENT_DIR, "README.md"), encoding="utf-8"
).read(),
long_description_content_type="text/markdown",
author="InstaDeep Ltd",
license="Apache License, Version 2.0",
Expand Down

0 comments on commit 5675ad6

Please sign in to comment.