We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3b790f commit 4744f38Copy full SHA for 4744f38
setup.py
@@ -15,13 +15,7 @@
15
'python-dateutil'
16
]
17
18
-long_description = '''
19
-Documentation
20
--------------
21
-Full documentation is available on `Github`_.
22
-
23
-.. _`Github`: https://github.com/GetStream/stream-python
24
-'''
+long_description = open('README.md', 'r').read()
25
26
requests = 'requests>=2.3.0,<3'
27
@@ -64,6 +58,7 @@ def run_tests(self):
64
58
url='http://github.com/GetStream/stream-python',
65
59
description='Client for getstream.io. Build scalable newsfeeds & activity streams in a few hours instead of weeks.',
66
60
long_description=long_description,
61
+ long_description_content_type='text/markdown',
67
62
license=__license__,
68
63
packages=find_packages(),
69
zip_safe=False,
0 commit comments