forked from sgl-project/SpecForge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1023 Bytes
/
Copy pathpyproject.toml
File metadata and controls
49 lines (44 loc) · 1023 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
42
43
44
45
46
47
48
49
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "specforge"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.10"
description = "SpecForge: Speculative Decoding Training Framework"
authors = [{name = "SGLang Team"}]
urls = {Homepage = "https://github.com/sgl-project/SpecForge"}
dependencies = [
"torch==2.13.0",
"transformers==5.12.1",
"datasets",
"tqdm",
"accelerate",
"huggingface-hub",
"numpy",
"openai-harmony",
"pydantic",
"psutil",
"pyyaml",
"safetensors",
"sglang==0.5.18",
"requests",
"tensorboard",
"typing-extensions",
"wandb",
"yunchang",
]
[project.scripts]
specforge = "specforge.cli:main"
[tool.setuptools.packages.find]
include = ["specforge*"]
[project.optional-dependencies]
data = ["openai"]
dev = [
"pre-commit",
]
fa = ["flash-attn", "ninja", "packaging"]
liger = ["liger-kernel"]
[tool.setuptools.dynamic]
version = {file = "version.txt"}