diff --git a/.github/actions/nm-build-vllm-whl/action.yml b/.github/actions/nm-build-vllm-whl/action.yml index 741309b85453a..ce859b130c001 100644 --- a/.github/actions/nm-build-vllm-whl/action.yml +++ b/.github/actions/nm-build-vllm-whl/action.yml @@ -1,5 +1,5 @@ -name: build neuralmagic-vllm whl -description: 'build whl file of neuralmagic-vllm' +name: build nm-vllm whl +description: 'build whl file of nm-vllm' inputs: python: description: 'python version, e.g. 3.10.12' diff --git a/.github/actions/nm-build-vllm/action.yml b/.github/actions/nm-build-vllm/action.yml index a9168e7625efa..baea7498b943d 100644 --- a/.github/actions/nm-build-vllm/action.yml +++ b/.github/actions/nm-build-vllm/action.yml @@ -1,5 +1,5 @@ -name: build neuralmagic-vllm -description: 'build neuralmagic-vllm' +name: build nm-vllm +description: 'build nm-vllm' inputs: Gi_per_thread: description: 'requested GiB to reserve per thread' diff --git a/.github/actions/nm-test-vllm/action.yml b/.github/actions/nm-test-vllm/action.yml index 07ebb473882e9..db05cfbcdc817 100644 --- a/.github/actions/nm-test-vllm/action.yml +++ b/.github/actions/nm-test-vllm/action.yml @@ -1,8 +1,8 @@ -name: test neuralmagic-vllm -description: "test neuralmagic-vllm via, 'pytest tests/'" +name: test nm-vllm +description: "test nm-vllm via, 'pytest tests/'" inputs: test_directory: - description: 'test directory, path is relative to neuralmagic-vllm' + description: 'test directory, path is relative to nm-vllm' required: true test_results: description: 'top-level directory for xml test results' diff --git a/.github/scripts/build b/.github/scripts/build index 865677d00a4c7..62be45bceb36a 100755 --- a/.github/scripts/build +++ b/.github/scripts/build @@ -2,7 +2,7 @@ usage() { echo`` - echo "build 'neuralmagic-vllm' in specified python and venv" + echo "build 'nm-vllm' in specified python and venv" echo echo "usage: ${0} " echo diff --git a/.github/scripts/run-tests b/.github/scripts/run-tests index 082b6da0bf2fb..b75eceb89c92f 100755 --- a/.github/scripts/run-tests +++ b/.github/scripts/run-tests @@ -9,7 +9,7 @@ usage() { echo " -r - desired results base directory. xml results will mirror provided tests directory structure. (default 'test-results/')" echo " -h - this list of options" echo - echo "note: all paths are relative to 'neuralmagic-vllm' root" + echo "note: all paths are relative to 'nm-vllm' root" echo exit 1 } diff --git a/README.md b/README.md index 202d5b22ccd3c..d23d3bf46dc99 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,8 @@ pip install nm-vllm You can also build and install `nm-vllm` from source (this will take ~10 minutes): ```bash -git clone https://github.com/neuralmagic/neuralmagic-vllm.git -cd neuralmagic-vllm +git clone https://github.com/neuralmagic/nm-vllm.git +cd nm-vllm pip install -e . ``` diff --git a/setup.py b/setup.py index 790541c007642..5bd0e24c7c4f5 100644 --- a/setup.py +++ b/setup.py @@ -449,9 +449,9 @@ def get_requirements() -> List[str]: "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/neuralmagic", project_urls={ - "Homepage": "https://github.com/vllm-project/vllm", + "Homepage": "https://github.com/neuralmagic", "Documentation": "https://vllm.readthedocs.io/en/latest/", }, classifiers=[