From f852ac73d2e828c5e8d6ee84a735f3df32bcb53a Mon Sep 17 00:00:00 2001 From: Nathan Weinberg Date: Thu, 18 Jul 2024 14:11:52 -0500 Subject: [PATCH] fix: update setup.py to differentiate between fork and upstream Signed-off-by: Nathan Weinberg --- setup.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 72ef26f15e405..f260ab35dbab8 100644 --- a/setup.py +++ b/setup.py @@ -457,18 +457,17 @@ def _read_requirements(filename: str) -> List[str]: package_data["vllm"].append("*.so") setup( - name="vllm", + name="vllm-odh", version=get_vllm_version(), - author="vLLM Team", + author="Open Data Hub Community", license="Apache 2.0", description=("A high-throughput and memory-efficient inference and " "serving engine for LLMs"), long_description=read_readme(), long_description_content_type="text/markdown", - url="https://github.com/vllm-project/vllm", + url="https://github.com/opendatahub-io/vllm", project_urls={ - "Homepage": "https://github.com/vllm-project/vllm", - "Documentation": "https://vllm.readthedocs.io/en/latest/", + "Homepage": "https://github.com/opendatahub-io/vllm", }, classifiers=[ "Programming Language :: Python :: 3.8",