Skip to content

Commit 8c22613

Browse files
JonnaMatclaude
andcommitted
Bump version to 0.1.1, add PyPI metadata and landing page
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 588f4d1 commit 8c22613

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,26 @@ build-backend = "setuptools.build_meta"
88
name = "flash-head"
99
dynamic = ["version"]
1010
description = "FlashHead: vLLM Plugin for Fast Language Model Head Inference"
11+
readme = "README.md"
12+
license = {file = "LICENSE"}
1113
requires-python = ">=3.10"
1214
dependencies = [] # torch, safetensors, huggingface_hub provided by vLLM
15+
keywords = ["vllm", "llm", "inference", "optimization", "lm-head", "plugin"]
16+
classifiers = [
17+
"Development Status :: 4 - Beta",
18+
"Intended Audience :: Developers",
19+
"Intended Audience :: Science/Research",
20+
"Programming Language :: Python :: 3",
21+
"Programming Language :: Python :: 3.10",
22+
"Programming Language :: Python :: 3.11",
23+
"Programming Language :: Python :: 3.12",
24+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
25+
]
26+
27+
[project.urls]
28+
Homepage = "https://github.com/Embedl/flash-head"
29+
Repository = "https://github.com/Embedl/flash-head"
30+
Issues = "https://github.com/Embedl/flash-head/issues"
1331

1432
[project.entry-points."vllm.general_plugins"]
1533
flash_head = "flash_head:register"

src/flash_head/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
"""FlashHead package version. Bump this to trigger a PyPI release."""
44

5-
__version__ = "0.1.0"
5+
__version__ = "0.1.1"

0 commit comments

Comments
 (0)