pyproject.toml 8.02 KB
Newer Older
1
[build-system]
2
# Should be mirrored in requirements/build.txt
3
requires = [
4
    "cmake>=3.26.1",
5
    "ninja",
6
7
    "packaging>=24.2",
    "setuptools>=77.0.3,<80.0.0",
8
    "setuptools-scm>=8.0",
9
    "torch == 2.7.1",
10
    "wheel",
11
    "jinja2",
12
13
]
build-backend = "setuptools.build_meta"
14

15
16
17
[project]
name = "vllm"
authors = [{name = "vLLM Team"}]
18
19
license = "Apache-2.0"
license-files = ["LICENSE"]
20
21
22
23
24
25
26
readme = "README.md"
description = "A high-throughput and memory-efficient inference and serving engine for LLMs"
classifiers = [
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
27
    "Programming Language :: Python :: 3.13",
28
29
30
31
32
33
    "Intended Audience :: Developers",
    "Intended Audience :: Information Technology",
    "Intended Audience :: Science/Research",
    "Topic :: Scientific/Engineering :: Artificial Intelligence",
    "Topic :: Scientific/Engineering :: Information Analysis",
]
34
requires-python = ">=3.9,<3.14"
35
36
37
38
dynamic = [ "version", "dependencies", "optional-dependencies"]

[project.urls]
Homepage="https://github.com/vllm-project/vllm"
39
40
Documentation="https://docs.vllm.ai/en/latest/"
Slack="https://slack.vllm.ai/"
41
42
43
44

[project.scripts]
vllm = "vllm.entrypoints.cli.main:main"

45
46
47
[project.entry-points."vllm.general_plugins"]
lora_filesystem_resolver = "vllm.plugins.lora_resolvers.filesystem_resolver:register_filesystem_resolver"

48
[tool.setuptools_scm]
49
# no extra settings needed, presence enables setuptools-scm
50
51
52

[tool.setuptools.packages.find]
where = ["."]
53
include = ["vllm*"]
54

55
56
[tool.yapfignore]
ignore_patterns = [
57
    ".buildkite/**",
58
    "benchmarks/**",
59
    "build/**",
60
    "examples/**",
61
62
]

63
64
65
66
[tool.ruff]
# Allow lines to be as long as 80.
line-length = 80

67
[tool.ruff.lint.per-file-ignores]
68
"vllm/third_party/**" = ["ALL"]
69
70
"vllm/version.py" = ["F401"]
"vllm/_version.py" = ["ALL"]
71
# Python 3.8 typing - skip V0 code
72
73
74
75
76
"vllm/attention/**/*.py" = ["UP006", "UP035"]
"vllm/core/**/*.py" = ["UP006", "UP035"]
"vllm/engine/**/*.py" = ["UP006", "UP035"]
"vllm/executor/**/*.py" = ["UP006", "UP035"]
"vllm/worker/**/*.py" = ["UP006", "UP035"]
77

78
79
80
81
82
83
84
[tool.ruff.lint]
select = [
    # pycodestyle
    "E",
    # Pyflakes
    "F",
    # pyupgrade
85
    "UP",
86
87
88
89
90
91
    # flake8-bugbear
    "B",
    # flake8-simplify
    "SIM",
    # isort
    # "I",
92
    # flake8-logging-format
93
    "G",
94
95
96
97
98
99
]
ignore = [
    # star imports
    "F405", "F403",
    # lambda expression assignment
    "E731",
100
101
    # Loop control variable not used within loop body
    "B007",
102
103
    # f-string format
    "UP032",
104
105
    # Can remove once 3.10+ is the minimum Python version
    "UP007",
106
]
107
108

[tool.mypy]
109
plugins = ['pydantic.mypy']
110
ignore_missing_imports = true
111
check_untyped_defs = true
112
follow_imports = "silent"
113

114
# After fixing type errors resulting from follow_imports: "skip" -> "silent",
115
# move the directory here and remove it from tools/mypy.sh
116
117
118
119
files = [
    "vllm/*.py",
    "vllm/adapter_commons",
    "vllm/assets",
120
    "vllm/entrypoints",
121
    "vllm/core",
122
    "vllm/inputs",
123
    "vllm/logging_utils",
124
125
126
127
128
129
    "vllm/multimodal",
    "vllm/platforms",
    "vllm/transformers_utils",
    "vllm/triton_utils",
    "vllm/usage",
]
130
# TODO(woosuk): Include the code from Megatron and HuggingFace.
131
132
exclude = [
    "vllm/model_executor/parallel_utils/|vllm/model_executor/models/",
133
134
    # Ignore triton kernels in ops.
    'vllm/attention/ops/.*\.py$'
135
]
136

137
[tool.isort]
138
139
140
skip_glob = [
    ".buildkite/*",
    "benchmarks/*",
141
    "examples/*",
142
]
143
144
use_parentheses = true
skip_gitignore = true
145
146
147
148

[tool.pytest.ini_options]
markers = [
    "skip_global_cleanup",
149
    "core_model: enable this model test in each PR instead of only nightly",
150
    "hybrid_model: models that contain mamba layers (including pure SSM and hybrid architectures)",
151
    "cpu_model: enable this model test in CPU tests",
152
153
    "split: run this test as part of a split",
    "distributed: run this test only in distributed GPU tests",
Joe Runde's avatar
Joe Runde committed
154
    "skip_v1: do not run this test with v1",
155
    "optional: optional tests that are automatically skipped, include --optional to run them",
156
]
157

158
159
[tool.ty.src]
root = "./vllm"
Aaron Pham's avatar
Aaron Pham committed
160
161
162
163
respect-ignore-files = true

[tool.ty.environment]
python = "./.venv"
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346

[tool.typos.files]
# these files may be written in non english words
extend-exclude = ["tests/models/fixtures/*", "tests/prompts/*",
    "benchmarks/sonnet.txt", "tests/lora/data/*", "build/*",
    "vllm/third_party/*"]
ignore-hidden = true
ignore-files = true
ignore-dot = true
ignore-vcs = true
ignore-global = true
ignore-parent = true

[tool.typos.default]
binary = false
check-filename = false
check-file = true
unicode = true
ignore-hex = true
identifier-leading-digits = false
locale = "en"
extend-ignore-identifiers-re = ["NVML_*", ".*Unc.*", ".*_thw",
    ".*UE8M0.*", ".*[UE4M3|ue4m3].*", ".*eles.*",
     ".*[Tt]h[rR].*"]
extend-ignore-words-re = []
extend-ignore-re = []

[tool.typos.default.extend-identifiers]
bbc5b7ede = "bbc5b7ede"
womens_doubles = "womens_doubles"
v_2nd = "v_2nd"
# splitted_input = "splitted_input"
NOOPs = "NOOPs"
typ = "typ"
nin_shortcut = "nin_shortcut"
UperNetDecoder = "UperNetDecoder"
subtile = "subtile"
cudaDevAttrMaxSharedMemoryPerBlockOptin = "cudaDevAttrMaxSharedMemoryPerBlockOptin"
SFOuput = "SFOuput"
# huggingface transformers repo uses these words
depthwise_seperable_out_channel = "depthwise_seperable_out_channel"
DepthWiseSeperableConv1d = "DepthWiseSeperableConv1d"
depthwise_seperable_CNN = "depthwise_seperable_CNN"

[tool.typos.default.extend-words]
iy = "iy"
tendencias = "tendencias"
# intel cpu features
tme = "tme"
dout = "dout"
Pn = "Pn"
arange = "arange"

[tool.typos.type.py]
extend-glob = []
extend-ignore-identifiers-re = []
extend-ignore-words-re = []
extend-ignore-re = []

[tool.typos.type.py.extend-identifiers]
arange = "arange"
NDArray = "NDArray"
EOFError = "EOFError"
fo = "fo"
ba = "ba"

[tool.typos.type.py.extend-words]

[tool.typos.type.cpp]
extend-glob = ["*.cu"]
extend-ignore-identifiers-re = []
extend-ignore-words-re = []
extend-ignore-re = []

[tool.typos.type.cpp.extend-identifiers]
countr_one = "countr_one"
k_ot = "k_ot"
ot = "ot"

[tool.typos.type.cpp.extend-words]

[tool.typos.type.rust]
extend-glob = []
extend-ignore-identifiers-re = []
extend-ignore-words-re = []
extend-ignore-re = []

[tool.typos.type.rust.extend-identifiers]
flate2 = "flate2"

[tool.typos.type.rust.extend-words]
ser = "ser"

[tool.typos.type.lock]
extend-glob = []
check-file = false
extend-ignore-identifiers-re = []
extend-ignore-words-re = []
extend-ignore-re = []

[tool.typos.type.lock.extend-identifiers]

[tool.typos.type.lock.extend-words]

[tool.typos.type.jl]
extend-glob = []
extend-ignore-identifiers-re = []
extend-ignore-words-re = []
extend-ignore-re = []

[tool.typos.type.jl.extend-identifiers]

[tool.typos.type.jl.extend-words]
modul = "modul"
egals = "egals"
usig = "usig"
egal = "egal"

[tool.typos.type.go]
extend-glob = []
extend-ignore-identifiers-re = []
extend-ignore-words-re = []
extend-ignore-re = []

[tool.typos.type.go.extend-identifiers]
flate = "flate"

[tool.typos.type.go.extend-words]

[tool.typos.type.css]
extend-glob = []
extend-ignore-identifiers-re = []
extend-ignore-words-re = []
extend-ignore-re = []

[tool.typos.type.css.extend-identifiers]
nd = "nd"

[tool.typos.type.css.extend-words]

[tool.typos.type.man]
extend-glob = []
extend-ignore-identifiers-re = []
extend-ignore-words-re = []
extend-ignore-re = []

[tool.typos.type.man.extend-identifiers]
Nd = "Nd"

[tool.typos.type.man.extend-words]

[tool.typos.type.cert]
extend-glob = []
check-file = false
extend-ignore-identifiers-re = []
extend-ignore-words-re = []
extend-ignore-re = []

[tool.typos.type.cert.extend-identifiers]

[tool.typos.type.cert.extend-words]

[tool.typos.type.sh]
extend-glob = []
extend-ignore-identifiers-re = []
extend-ignore-words-re = []
extend-ignore-re = []

[tool.typos.type.sh.extend-identifiers]
ot = "ot"

[tool.typos.type.sh.extend-words]

[tool.typos.type.vimscript]
extend-glob = []
extend-ignore-identifiers-re = []
extend-ignore-words-re = []
extend-ignore-re = []

[tool.typos.type.vimscript.extend-identifiers]
windo = "windo"

[tool.typos.type.vimscript.extend-words]