Skip to content

Commit

Permalink
Update setup.py and set long_decription content type to markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
tjofas authored Oct 16, 2024
1 parent 4cc2aea commit dbc51c3
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 @@ -26,7 +26,7 @@
with open('README.md') as readme_file:
readme = readme_file.read()

with open('HISTORY.rst') as history_file:
with open('HISTORY.md') as history_file:
history = history_file.read()


Expand Down Expand Up @@ -92,6 +92,7 @@ def find_meta(meta):
version=find_meta('version'),
description="Python library to make plotting simpler for data scientists",
long_description=readme + '\n\n' + history,
long_description_content_type='text/markdown',
author=find_meta('author'),
author_email=find_meta('email'),
url='https://github.com/spotify/chartify',
Expand Down

0 comments on commit dbc51c3

Please sign in to comment.