From 91068a19f171b63d27f6b2ed3c3e43a889f86c47 Mon Sep 17 00:00:00 2001 From: kannappan Date: Sat, 9 Mar 2024 09:02:40 +0530 Subject: [PATCH] feat: removed long_description info from setup.py --- setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 2a5655c0..4c77ee47 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ assert packages # read version from the package file. -with (open(os.path.join(this, "hummingbird/__init__.py"), "r")) as f: +with open(os.path.join(this, "hummingbird/__init__.py"), "r") as f: line = [_ for _ in [_.strip("\r\n ") for _ in f.readlines()] if _.startswith("__version__")] if len(line) > 0: version_str = line[0].split("=")[1].strip('" ') @@ -44,9 +44,6 @@ setup( name="hummingbird-ml", version=version_str, - description="Convert trained traditional machine learning models into tensor computations", - long_description=long_description, - long_description_content_type="text/markdown", license="MIT License", author="Microsoft Corporation", author_email="hummingbird-dev@microsoft.com",