From 915f86a5ff156a03c8c497acb9cb42118c39d61e Mon Sep 17 00:00:00 2001 From: Kenichi Maehashi Date: Wed, 24 Jul 2024 10:36:37 +0000 Subject: [PATCH] add long_description --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index 211c65b1..a6a3bbb6 100644 --- a/setup.py +++ b/setup.py @@ -6,12 +6,15 @@ # Get __version__ variable exec(open(os.path.join(here, "pytorch_pfn_extras", "_version.py")).read()) +long_description = open(os.path.join(here, "README.md")).read() setuptools.setup( name="pytorch-pfn-extras", version=__version__, # NOQA description="Supplementary components to accelerate research and " "development in PyTorch.", + long_description=long_description, + long_description_content_type="text/markdown", author="Preferred Networks, Inc.", license="MIT License", install_requires=["numpy", "packaging", "torch", "typing-extensions>=3.10"],