From f2263df7accc18f3ea6f13c34b651755ee05436f Mon Sep 17 00:00:00 2001
From: Isuru Fernando <isuruf@gmail.com>
Date: Mon, 1 May 2023 14:53:57 -0500
Subject: [PATCH] Fix long description

---
 setup.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/setup.py b/setup.py
index 9f87b979..359a3ea5 100644
--- a/setup.py
+++ b/setup.py
@@ -2,6 +2,7 @@
 
 import os
 from setuptools import setup
+from pathlib import Path
 
 ver_dic = {}
 version_file = open("sumpy/version.py")
@@ -74,9 +75,8 @@ setup(
     name="sumpy",
     version=ver_dic["VERSION_TEXT"],
     description="Fast summation in Python",
-    long_description="""
-      Code-generating FMM etc.
-      """,
+    long_description=Path("README.rst").read_text(encoding="utf-8"),
+    long_description_content_type="text/x-rst",
     classifiers=[
         "Development Status :: 3 - Alpha",
         "Intended Audience :: Developers",
-- 
GitLab