2025-02-02 14:58:18 -05:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2025-06-03 11:20:17 -07:00
|
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
2025-02-02 14:58:18 -05:00
|
|
|
|
2024-12-30 20:24:45 +08:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name='vllm_add_dummy_platform',
|
|
|
|
|
version='0.1',
|
|
|
|
|
packages=['vllm_add_dummy_platform'],
|
|
|
|
|
entry_points={
|
|
|
|
|
'vllm.platform_plugins': [
|
|
|
|
|
"dummy_platform_plugin = vllm_add_dummy_platform:dummy_platform_plugin" # noqa
|
2025-06-20 09:44:56 -05:00
|
|
|
],
|
|
|
|
|
"vllm.general_plugins":
|
|
|
|
|
["dummy_custom_ops = vllm_add_dummy_platform:register_ops"],
|
2024-12-30 20:24:45 +08:00
|
|
|
})
|