From ac8cc29623ced5f404446e5b11986232a5c2a264 Mon Sep 17 00:00:00 2001 From: Nick MacCarthy Date: Wed, 28 Aug 2024 11:56:54 -0400 Subject: [PATCH] fix order of decription types --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 169b06f..c82cc13 100644 --- a/setup.py +++ b/setup.py @@ -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() @@ -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',