[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vllm-spark2_5-plugin"
version = "0.1.0"
description = "Spark2_5 support for vLLM, maintained out of tree"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
dependencies = ["vllm"]
[project.optional-dependencies]
test = ["pytest>=8.0"]
[project.entry-points."vllm.general_plugins"]
spark2_5 = "vllm_spark2_5_plugin:register"
[tool.setuptools.packages.find]
where = ["src"]
include = ["vllm_spark2_5_plugin*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 88
extend-exclude = [
"src/vllm_spark2_5_plugin/spark2_5.py",
"src/vllm_spark2_5_plugin/spark2_5_tool_parser.py",
"src/vllm_spark2_5_plugin/spark2_5_config.py",
]
force-exclude = true