From fdc19bfe9e14f5159707d52f9427523508edf2f4 Mon Sep 17 00:00:00 2001 From: Eleftherios Zisis Date: Thu, 18 Apr 2024 12:01:15 +0200 Subject: [PATCH] Fix long description so that wheel publishing doesn't fail --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 4156205..d7c1926 100644 --- a/setup.py +++ b/setup.py @@ -39,6 +39,8 @@ "Programming Language :: Python :: 3.12", ], description="NGV Architecture c++ modules", + long_description=open("README.rst").read(), + long_description_content_type="text/x-rst", author="Blue Brain Project, EPFL", packages=find_packages(), ext_modules=ext_modules,