MOSAIC-4B / pyproject.toml
Yaphabates's picture
Add pyproject.toml for vLLM plugin
4106698 verified
Raw
History Blame Contribute Delete
517 Bytes
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nas-child-vl-vllm"
version = "0.1.0"
description = "Out-of-tree vLLM plugin for NAS-Child-VL models"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
dependencies = [
"vllm>=0.17.0,<0.18.0",
"flash-linear-attention>=0.4.2",
"einops",
]
[project.optional-dependencies]
dev = [
"pytest",
]
[tool.setuptools.packages.find]
include = ["nas_child_vl_vllm*"]