mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-09 07:24:54 +08:00
16 lines
400 B
Python
16 lines
400 B
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name="dummy_stat_logger",
|
|
version="0.1",
|
|
packages=["dummy_stat_logger"],
|
|
entry_points={
|
|
"vllm.stat_logger_plugins": [
|
|
"dummy_stat_logger = dummy_stat_logger.dummy_stat_logger:DummyStatLogger" # noqa
|
|
]
|
|
},
|
|
)
|