forked from tanishqkumar/ssd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 877 Bytes
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 877 Bytes
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
41
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "ssd"
version = "0.2.0"
authors = [{ name = "Tanishq Kumar" }]
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
description = "Async tree-based speculative decoding research engine"
requires-python = ">=3.11,<3.13"
dependencies = [
"torch==2.8.0",
"triton==3.4.0",
"transformers==4.57.1",
"xxhash==3.5.0",
"numpy==2.3.3",
"safetensors==0.6.2",
"tqdm==4.67.1",
"flashinfer-python==0.5.2",
"sgl-kernel==0.3.17.post1",
"nvidia-cutlass-dsl==4.2.1",
"wandb==0.22.0",
"hf_transfer",
"tiktoken",
]
[project.optional-dependencies]
scripts = [
"datasets",
"huggingface_hub",
]
[project.urls]
Homepage="https://github.com/tanishqkumar/ssd"
[tool.setuptools.packages.find]
where = ["."]
include = ["ssd*"]