mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-10 15:35:57 +08:00
Signed-off-by: Christian Pinto <christian.pinto@ibm.com> Co-authored-by: Cyrus Leung <tlleungac@connect.ust.hk>
16 lines
405 B
Python
16 lines
405 B
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name="prithvi_io_processor_plugin",
|
|
version="0.1",
|
|
packages=["prithvi_io_processor"],
|
|
entry_points={
|
|
"vllm.io_processor_plugins": [
|
|
"prithvi_to_tiff = prithvi_io_processor:register_prithvi", # noqa: E501
|
|
]
|
|
},
|
|
)
|