Skip to content

Commit

Permalink
fix order of decription types
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick MacCarthy committed Aug 28, 2024
1 parent 8b6f996 commit ac8cc29
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@

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

with open(path.join(here, 'VERSION.txt'), encoding='utf-8') as fv:
version = fv.read()
Expand All @@ -31,8 +30,9 @@

description='A python module to emulate the date math used in SOLR and Elasticsearch',

long_description=long_description,
long_description_content_type='text/markdown',
long_description_content_type="text/markdown",
long_description=long_description_from_readme,


# The project's main homepage.
url='https://github.com/nickmaccarthy/python-datemath',
Expand Down

0 comments on commit ac8cc29

Please sign in to comment.