We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca3489d commit d4cbfa2Copy full SHA for d4cbfa2
1 file changed
setup.py
@@ -4,7 +4,7 @@
4
5
from setuptools import setup, find_packages
6
7
-with open('README.rst') as readme_file:
+with open('README.md', encoding='utf-8') as readme_file:
8
readme = readme_file.read()
9
10
with open('HISTORY.rst') as history_file:
@@ -33,7 +33,8 @@
33
description="Ujeebu Python SDK to interact with Ujeebu API",
34
install_requires=requirements,
35
license="GNU General Public License v3",
36
- long_description=readme + '\n\n' + history,
+ long_description=readme,
37
+ long_description_content_type='text/markdown',
38
include_package_data=True,
39
keywords='ujeebu_python',
40
name='ujeebu_python',
0 commit comments