Skip to content

Commit

Permalink
Merge pull request #16 from awslabs/long_description
Browse files Browse the repository at this point in the history
Adding the long description to setup.py
  • Loading branch information
jarednielsen committed Dec 3, 2019
2 parents eed7bf2 + 482f40d commit 3b54c79
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__

Expand All @@ -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']},
Expand Down

0 comments on commit 3b54c79

Please sign in to comment.