From 482f40dbfa14a52712066262ef243d3a89512713 Mon Sep 17 00:00:00 2001 From: Amol Lele <19983848+leleamol@users.noreply.github.com> Date: Tue, 3 Dec 2019 10:08:19 -0800 Subject: [PATCH] Adding the long description to setup.py --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index abc457e..fcc605e 100644 --- a/setup.py +++ b/setup.py @@ -3,6 +3,9 @@ import sys import setuptools +with open("README.md", "r") as fh: + long_description = fh.read() + exec(open("smdebug_rulesconfig/_version.py").read()) CURRENT_VERSION = __version__ @@ -12,6 +15,8 @@ def build_rule_config_package(version): version=version, author="AWS DeepLearning Team", description="SMDebug RulesConfig", + long_description=long_description, + long_description_content_type="text/markdown", url="https://github.com/awslabs/sagemaker-debugger-rulesconfig", packages=["smdebug_rulesconfig"], package_data={'smdebug_rulesconfig' : ['rule_config_jsons/*.json']},