We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b6f996 commit ac8cc29Copy full SHA for ac8cc29
setup.py
@@ -14,8 +14,7 @@
14
15
# Get the long description from the README file
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"
+ long_description_from_readme = f.read()
19
20
with open(path.join(here, 'VERSION.txt'), encoding='utf-8') as fv:
21
version = fv.read()
@@ -31,8 +30,9 @@
31
30
32
description='A python module to emulate the date math used in SOLR and Elasticsearch',
33
34
- long_description=long_description,
35
- long_description_content_type='text/markdown',
+ long_description_content_type="text/markdown",
+ long_description=long_description_from_readme,
+
36
37
# The project's main homepage.
38
url='https://github.com/nickmaccarthy/python-datemath',
0 commit comments