mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-14 06:27:45 +08:00
[None][docs] Update Python wheel's short-/long-descriptions (#8676)
Signed-off-by: Yanchao Lu <yanchaol@nvidia.com>
This commit is contained in:
parent
0ac5cbcac4
commit
1614624beb
@ -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>
|
||||||
|
|
||||||
[](https://nvidia.github.io/TensorRT-LLM/)
|
[](https://nvidia.github.io/TensorRT-LLM/)
|
||||||
[](https://www.python.org/downloads/release/python-3123/)
|
[](https://www.python.org/downloads/release/python-3123/)
|
||||||
|
|||||||
12
setup.py
12
setup.py
@ -233,13 +233,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",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user