Skip to content

Commit dd62a4a

Browse files
committed
fix(readme): fix pypi readme
Signed-off-by: Chris Snow <[email protected]>
1 parent f7363eb commit dd62a4a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

setup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,16 @@ def get_version(rel_path):
5353
else:
5454
raise RuntimeError("Unable to find version string.")
5555

56+
this_directory = os.path.abspath(os.path.dirname(__file__))
57+
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
58+
long_description = f.read()
59+
5660

5761
setup(
5862
name="hpecp",
5963
description="HPE Container Platform client",
64+
long_description=long_description,
65+
long_description_content_type='text/markdown',
6066
author="Chris Snow",
6167
author_email="[email protected]",
6268
url="https://github.com/hpe-container-platform-community/hpecp-python-library",

0 commit comments

Comments
 (0)