pyproject.toml 474 Bytes
Newer Older
chenzk's avatar
chenzk committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[project]
name = "compactor-vllm"
description = "Fast KV Cache Compression for LLMs"
version = "0.0.1"
dependencies = [
    # "triton>=3.5.0",
    "transformers",
    # "torch>=2.9.0",
    "safetensors",
    "tqdm",
    "flash-attn",
    "pytest"
]
requires-python = ">= 3.8"
authors = [
  {name = "Vivek Chari", email = "viveknchari@gmail.com"},
]
[project.optional-dependencies]
evaluate = ["rouge", "pandas",  "fuzzywuzzy"]
[tool.ruff]
exclude = [
    "triton_kernels"
]