-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·66 lines (61 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
executable file
·66 lines (61 loc) · 1.57 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "Diffulex"
version = "0.0.1"
authors = [
{ name = "Yijie Jin", email = "drewjin0827@gmail.com"},
]
maintainers = [
{ name = "DENG Lab @ SJTU" }
]
description = "Flexible Diffusion LLM serving engine supporting multiple variants of dLLM decoding strategies with high efficiency and low latency."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
dependencies = [
"accelerate>=1.9.0",
"bpytop>=1.0.68",
"datasets>=4.0.0",
"easydict>=1.13",
"einops>=0.8.1",
"keep-gpu>=0.2.0",
"numpy>=2.3.1",
"nvitop>=1.5.2",
"peft>=0.16.0",
"pip>=25.1.1",
"pytest>=8.4.1",
"pytest-forked>=1.6.0",
"pyyaml>=6.0.2",
"setuptools>=80.9.0",
"torch",
"tqdm>=4.67.1",
"transformers>=4.53.2",
"viztracer>=1.0.4",
"matplotlib>=3.10.5",
"fastapi>=0.115.0",
"uvicorn>=0.30.0",
"pyzmq>=26.0.0",
"msgpack>=1.0.0",
"pandas>=2.3.3",
"rich>=13.0.0",
"colorama>=0.4.6",
"lm-eval"
]
[project.urls]
Homepage = "https://sjtu-deng-lab.github.io/Diffulex"
Repository = "https://github.com/SJTU-DENG-Lab/Diffulex"
Organization = "https://github.com/SJTU-DENG-Lab"
[tool.ruff]
line-length = 120 # Avoid excessive line breaks (default 88 too aggressive)
[tool.ruff.lint.pycodestyle]
max-line-length = 120 # Align with formatter
[tool.pytest.ini_options]
markers = [
"diffulex_dry_run: Diffulex engine dry-run tests (GPU, spawns TP workers; run with --forked)",
]
[tool.setuptools.packages.find]
include = [
"diffulex",
"diffulex_bench",
"diffulex_kernel",
"test"
]