From dc136d1a407922a5b0e33e8b50fbf90a177676d1 Mon Sep 17 00:00:00 2001 From: Viacheslav Kukushkin Date: Wed, 10 Apr 2024 12:59:30 +0300 Subject: [PATCH] long_description is required for pypi --- cli/setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/setup.py b/cli/setup.py index 383347ed9..74e239b5f 100644 --- a/cli/setup.py +++ b/cli/setup.py @@ -15,6 +15,8 @@ name="medperf", version=__version__, description="CLI Tool for federated benchmarking on medical private data", + long_description=open('../README.md').read(), + long_description_content_type='text/markdown', url="https://github.com/mlcommons/medperf", author="MLCommons", license="Apache 2.0",