[None][docs] Update Python wheel's short-/long-descriptions (#8676)

Signed-off-by: Yanchao Lu <yanchaol@nvidia.com>
This commit is contained in:
Yanchao Lu 2025-10-27 14:58:49 +08:00 committed by GitHub
parent 0ac5cbcac4
commit 1614624beb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 4 deletions

View File

@ -2,7 +2,8 @@
TensorRT LLM
===========================
<h4> A TensorRT Toolbox for Optimized Large Language Model Inference</h4>
<h4>TensorRT LLM provides users with an easy-to-use Python API to define Large Language Models (LLMs) and supports
state-of-the-art optimizations to perform inference efficiently on NVIDIA GPUs.</h4>
[![Documentation](https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat)](https://nvidia.github.io/TensorRT-LLM/)
[![python](https://img.shields.io/badge/python-3.12-green)](https://www.python.org/downloads/release/python-3123/)

View File

@ -233,13 +233,19 @@ if use_precompiled:
sanity_check()
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# https://setuptools.pypa.io/en/latest/references/keywords.html
setup(
name='tensorrt_llm',
version=get_version(),
description='TensorRT-LLM: A TensorRT Toolbox for Large Language Models',
long_description=
'TensorRT-LLM: A TensorRT Toolbox for Large Language Models',
description=
('TensorRT LLM provides users with an easy-to-use Python API to define Large Language Models (LLMs) and supports '
'state-of-the-art optimizations to perform inference efficiently on NVIDIA GPUs.'
),
long_description=long_description,
long_description_content_type="text/markdown",
author="NVIDIA Corporation",
url="https://github.com/NVIDIA/TensorRT-LLM",
download_url="https://github.com/NVIDIA/TensorRT-LLM/tags",