Skip to content

Commit

Permalink
➕ Add encoding to LONG_DESCRIPTION in setup.py (#419)
Browse files Browse the repository at this point in the history
  • Loading branch information
samet-akcay committed Jul 8, 2022
1 parent c0c4cbd commit fa6808a
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 @@ -88,7 +88,7 @@ def get_required_packages(requirement_files: List[str]) -> List[str]:


VERSION = get_version()
LONG_DESCRIPTION = (Path(__file__).parent / "README.md").read_text()
LONG_DESCRIPTION = (Path(__file__).parent / "README.md").read_text(encoding="utf8")
INSTALL_REQUIRES = get_required_packages(requirement_files=["base"])
EXTRAS_REQUIRE = {
"dev": get_required_packages(requirement_files=["dev", "docs"]),
Expand Down

0 comments on commit fa6808a

Please sign in to comment.