Files
nano-vllm/pyproject.toml
2025-06-13 23:40:07 +08:00

28 lines
578 B
TOML

[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "nano-vllm"
version = "0.1.0"
authors = [{ name = "Xingkai Yu" }]
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
description = "a mimic VLLM implementation from scratch"
requires-python = ">=3.10,<3.13"
dependencies = [
"torch>=2.4.0",
"triton>=3.0.0",
"transformers>=4.51.0",
"flash-attn",
"nvidia-ml-py",
"xxhash",
]
[project.urls]
Homepage="https://github.com/GeeeekExplorer/nano-vllm"
[tool.setuptools]
packages = ["nanovllm"]