From 262b8626530900508c472cf424e0130fea9024ba Mon Sep 17 00:00:00 2001 From: himkt Date: Fri, 22 Nov 2024 09:38:45 +0900 Subject: [PATCH] hotfix: add long_description and long_description_content_type --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 4639d68..27de611 100644 --- a/setup.py +++ b/setup.py @@ -24,6 +24,8 @@ name="torch-dftd", version=__version__, # NOQA description="pytorch implementation of dftd2 & dftd3", + long_description="pytorch implementation of dftd2 & dftd3", + long_description_content_type="text/plain", packages=find_packages(), setup_requires=setup_requires, install_requires=install_requires,