Upload vllm_plugin/pyproject.toml with huggingface_hub
Browse files- vllm_plugin/pyproject.toml +25 -0
vllm_plugin/pyproject.toml
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=45", "wheel"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "vllm_borealis"
|
| 7 |
+
version = "0.1.0"
|
| 8 |
+
description = "vLLM plugin for Borealis Audio-Language Model"
|
| 9 |
+
readme = "README.md"
|
| 10 |
+
license = {text = "Apache-2.0"}
|
| 11 |
+
authors = [
|
| 12 |
+
{name = "VikhrModels"}
|
| 13 |
+
]
|
| 14 |
+
requires-python = ">=3.9"
|
| 15 |
+
dependencies = [
|
| 16 |
+
"vllm>=0.6.0",
|
| 17 |
+
"torch",
|
| 18 |
+
"transformers",
|
| 19 |
+
]
|
| 20 |
+
|
| 21 |
+
[project.entry-points."vllm.general_plugins"]
|
| 22 |
+
register_borealis = "vllm_borealis:register"
|
| 23 |
+
|
| 24 |
+
[tool.setuptools.packages.find]
|
| 25 |
+
where = ["."]
|