We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 273f3b9 commit 0937e75Copy full SHA for 0937e75
setup.py
@@ -21,8 +21,10 @@
21
22
# Get the long description from the README file
23
long_description = ''
24
+long_description_content_type = 'text/plain'
25
if path.exists(path.join(here, readme_file)):
26
long_description = open(path.join(here, readme_file)).read()
27
+ long_description_content_type='text/markdown'
28
29
class update_vocabularies(install_scripts):
30
def run(self):
@@ -37,6 +39,7 @@ def run(self):
37
39
38
40
description='A Python interface to various metadata vocabularies',
41
long_description=long_description,
42
+ long_description_content_type=long_description_content_type,
43
44
zip_safe=False,
45
0 commit comments