From ce05677e9fdb836d02dbe7dab740a3da6b497e10 Mon Sep 17 00:00:00 2001 From: Nick Muoh Date: Fri, 3 Jul 2020 08:23:28 -0400 Subject: [PATCH] Making a PyPI-friendly README Added missing argument to setup.py to make readme show properly in pypi. Guides: https://packaging.python.org/guides/making-a-pypi-friendly-readme/ https://stackoverflow.com/a/26737258 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index df60acb..9b048a8 100644 --- a/setup.py +++ b/setup.py @@ -18,6 +18,7 @@ version='0.2.3', description=description, long_description=long_description, + long_description_content_type='text/markdown', author='Bobby Swingler', author_email='bobby.swingler@domo.com', url='https://github.com/domoinc/domo-python-sdk',