Skip to content

Commit

Permalink
fix: Broken README path
Browse files Browse the repository at this point in the history
  • Loading branch information
mauricioabreu committed May 13, 2024
1 parent 6d012e2 commit f78a8d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include requirements.txt
include LICENSE
include README.rst
include README.md
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from setuptools import setup

long_description = None
if exists("README.rst"):
with open("README.rst") as file:
if exists("README.md"):
with open("README.md") as file:
long_description = file.read()

install_reqs = [
Expand Down

0 comments on commit f78a8d0

Please sign in to comment.