File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1414
1515# Get the long description from the README file
1616with open (path .join (here , 'README.md' ), encoding = 'utf-8' ) as f :
17- long_description = f .read ()
18- long_description_content_type = "text/markdown"
17+ long_description_from_readme = f .read ()
1918
2019with open (path .join (here , 'VERSION.txt' ), encoding = 'utf-8' ) as fv :
2120 version = fv .read ()
3130
3231 description = 'A python module to emulate the date math used in SOLR and Elasticsearch' ,
3332
34- long_description = long_description ,
35- long_description_content_type = 'text/markdown' ,
33+ long_description_content_type = "text/markdown" ,
34+ long_description = long_description_from_readme ,
35+
3636
3737 # The project's main homepage.
3838 url = 'https://github.com/nickmaccarthy/python-datemath' ,
You can’t perform that action at this time.
0 commit comments