Skip to content

Commit

Permalink
Fix setup.py readme extension
Browse files Browse the repository at this point in the history
Since I moved README.md to README.rst I have to change it's reference in
the setup.py file. Failure to do so would have resulted in a build
error.
  • Loading branch information
ArnaudLevaufre committed Jul 22, 2019
1 parent f9f727a commit 72243a5
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 @@ -5,7 +5,7 @@
here = path.abspath(path.dirname(__file__))

# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()

setup(
Expand Down

0 comments on commit 72243a5

Please sign in to comment.