Skip to content

Commit

Permalink
Fix bad filename.
Browse files Browse the repository at this point in the history
  • Loading branch information
shyuep committed Aug 1, 2023
1 parent 83f1a48 commit e56428a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

current_dir = os.path.dirname(os.path.abspath(__file__))

with open(os.path.join(current_dir, "README.rst")) as f:
with open(os.path.join(current_dir, "README.md")) as f:
long_desc = f.read()

setup(
Expand All @@ -22,6 +22,7 @@
license="MIT",
description="Monty is the missing complement to Python.",
long_description=long_desc,
long_description_content_type="text/markdown",
keywords=["monty"],
python_requires=">=3.5",
classifiers=[
Expand Down

0 comments on commit e56428a

Please sign in to comment.