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

Signed-off-by: Yanchao Lu <yanchaol@nvidia.com>
This commit is contained in:
Yanchao Lu 2025-10-27 08:36:29 +08:00 committed by GitHub
parent b05555faeb
commit 389cbd7611
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 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/) [![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/) [![python](https://img.shields.io/badge/python-3.12-green)](https://www.python.org/downloads/release/python-3123/)

View File

@ -218,13 +218,19 @@ if use_precompiled:
sanity_check() 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 # https://setuptools.pypa.io/en/latest/references/keywords.html
setup( setup(
name='tensorrt_llm', name='tensorrt_llm',
version=get_version(), version=get_version(),
description='TensorRT-LLM: A TensorRT Toolbox for Large Language Models', description=
long_description= ('TensorRT LLM provides users with an easy-to-use Python API to define Large Language Models (LLMs) and supports '
'TensorRT-LLM: A TensorRT Toolbox for Large Language Models', '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", author="NVIDIA Corporation",
url="https://github.com/NVIDIA/TensorRT-LLM", url="https://github.com/NVIDIA/TensorRT-LLM",
download_url="https://github.com/NVIDIA/TensorRT-LLM/tags", download_url="https://github.com/NVIDIA/TensorRT-LLM/tags",