From fa6fd950cfb921e6f232aea601cea4c3613f3f22 Mon Sep 17 00:00:00 2001 From: Nathan Weinberg Date: Fri, 19 Jul 2024 11:08:44 -0500 Subject: [PATCH] fix: update setup.py to differentiate between 'main' and 'instructlab' 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..28c9321d46b74 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="instructlab-vllm", version=get_vllm_version(), - author="vLLM Team", + author="The InstructLab Team", 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/tree/instructlab", project_urls={ - "Homepage": "https://github.com/vllm-project/vllm", - "Documentation": "https://vllm.readthedocs.io/en/latest/", + "Homepage": "https://github.com/opendatahub-io/vllm/tree/instructlab", }, classifiers=[ "Programming Language :: Python :: 3.8",