pyproject.toml 8.5 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
27
28
29
30
31
32
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",
    "Intended Audience :: Developers",
    "Intended Audience :: Information Technology",
    "Intended Audience :: Science/Research",
    "Topic :: Scientific/Engineering :: Artificial Intelligence",
    "Topic :: Scientific/Engineering :: Information Analysis",
]
Martin Hoyer's avatar
Martin Hoyer committed
33
requires-python = ">=3.9,<3.13"
34
35
36
37
dynamic = [ "version", "dependencies", "optional-dependencies"]

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

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

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

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

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

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

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

66
[tool.ruff.lint.per-file-ignores]
67
"vllm/third_party/**" = ["ALL"]
68
69
"vllm/version.py" = ["F401"]
"vllm/_version.py" = ["ALL"]
70
# Python 3.8 typing - skip V0 code
71
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/prompt_adapter/**/*.py" = ["UP006", "UP035"]
"vllm/worker/**/*.py" = ["UP006", "UP035"]
77
# Python 3.8 typing - skip utils for ROCm
78
"vllm/utils/__init__.py" = ["UP006", "UP035"]
79

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

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

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

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

[tool.pytest.ini_options]
markers = [
    "skip_global_cleanup",
151
    "core_model: enable this model test in each PR instead of only nightly",
152
    "hybrid_model: models that contain mamba layers (including pure SSM and hybrid architectures)",
153
    "cpu_model: enable this model test in CPU tests",
154
155
    "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
156
    "skip_v1: do not run this test with v1",
157
    "optional: optional tests that are automatically skipped, include --optional to run them",
158
]
159
160

[tool.pymarkdown]
161
plugins.md004.style = "sublist" # ul-style
162
plugins.md007.indent = 4 # ul-indent
163
plugins.md007.start_indented = true # ul-indent
164
165
166
plugins.md013.enabled = false # line-length
plugins.md041.enabled = false # first-line-h1
plugins.md033.enabled = false # inline-html
167
plugins.md046.enabled = false # code-block-style
168
plugins.md024.allow_different_nesting = true # no-duplicate-headers
Aaron Pham's avatar
Aaron Pham committed
169

170
171
[tool.ty.src]
root = "./vllm"
Aaron Pham's avatar
Aaron Pham committed
172
173
174
175
respect-ignore-files = true

[tool.ty.environment]
python = "./.venv"
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
347
348
349
350
351
352
353
354
355
356
357
358

[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]