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 14
14
15
15
# Get the long description from the README file
16
16
with 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 ()
19
18
20
19
with open (path .join (here , 'VERSION.txt' ), encoding = 'utf-8' ) as fv :
21
20
version = fv .read ()
31
30
32
31
description = 'A python module to emulate the date math used in SOLR and Elasticsearch' ,
33
32
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
+
36
36
37
37
# The project's main homepage.
38
38
url = 'https://github.com/nickmaccarthy/python-datemath' ,
You can’t perform that action at this time.
0 commit comments