We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a3cde5 commit c32cb81Copy full SHA for c32cb81
2 files changed
requirements-dev.txt
setup.py
@@ -13,15 +13,13 @@
13
# To use a consistent encoding
14
from codecs import open
15
from os import path
16
-import register
17
18
here = path.abspath(path.dirname(__file__))
19
20
# Get the long description from the README file
21
-register.run
22
long_description = ''
23
-if path.exists('README.rst'):
24
- with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
+if path.exists('README.md'):
+ with open(path.join(here, 'README.md'), encoding='utf-8') as f:
25
long_description = f.read()
26
27
setup(
@@ -34,6 +32,7 @@
34
32
35
33
description='Moesif Python request',
36
long_description=long_description,
+ long_description_content_type="text/markdown",
37
38
# The project's main homepage.
39
url='https://www.moesif.com/docs',
0 commit comments