This commit is contained in:
GeeeekExplorer
2025-06-13 00:41:33 +08:00
parent 98a1551a7d
commit 135d1b38a2
5 changed files with 65 additions and 8 deletions

26
pyproject.toml Normal file
View File

@@ -0,0 +1,26 @@
[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.9,<3.13"
dependencies = [
"torch>=2.4.0",
"triton>=3.0.0",
"transformers>=4.51.0",
"flash-attn",
"nvidia-ml-py",
]
[project.urls]
Homepage="https://github.com/GeeeekExplorer/nano-vllm"
[tool.setuptools]
packages = ["nanovllm"]