From 570fb2e9cc3e128a3d9f996859ee6ff6590efed6 Mon Sep 17 00:00:00 2001 From: Woosuk Kwon Date: Mon, 19 Jun 2023 18:05:01 -0700 Subject: [PATCH] [PyPI] Fix package info in setup.py (#158) --- setup.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 1b27aeed..0aa666e7 100644 --- a/setup.py +++ b/setup.py @@ -147,15 +147,14 @@ setuptools.setup( name="vllm", version=find_version(get_path("vllm", "__init__.py")), author="vLLM Team", - author_email="vllm@gmail.com", # FIXME license="Apache 2.0", - description="vLLM: Easy, Fast, and Cheap LLM Serving with PagedAttention", # FIXME + 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/WoosukKwon/vllm", + url="https://github.com/vllm-project/vllm", project_urls={ - "Homepage": "https://github.com/WoosukKwon/vllm", - "Documentation": "https://vllm.readthedocs.io/en/latest/", # FIXME + "Homepage": "https://github.com/vllm-project/vllm", + "Documentation": "https://vllm.readthedocs.io/en/latest/", }, classifiers=[ "Programming Language :: Python :: 3.8",