-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Copyright (C) 2026 Embedl AB
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "flash-head"
dynamic = ["version"]
description = "FlashHead: vLLM Plugin for Fast Language Model Head Inference"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
dependencies = [] # torch, safetensors, huggingface_hub provided by vLLM
keywords = ["vllm", "llm", "inference", "optimization", "lm-head", "plugin"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.urls]
Homepage = "https://www.embedl.com/models"
Repository = "https://github.com/Embedl/flash-head"
Issues = "https://github.com/Embedl/flash-head/issues"
"Model Collection" = "https://huggingface.co/collections/embedl/flashhead"
[project.entry-points."vllm.general_plugins"]
flash_head = "flash_head:register"
[tool.setuptools.dynamic]
version = {attr = "flash_head._version.__version__"}
[tool.setuptools.packages.find]
where = ["src"]