pyproject.toml 996 Bytes
Newer Older
1
[build-system]
2
# Should be mirrored in requirements-build.txt
3
4
5
requires = [
    "ninja",
    "packaging",
6
    "setuptools >= 49.4.0",
7
    "torch == 2.1.2",
8
9
10
    "wheel",
]
build-backend = "setuptools.build_meta"
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33

[tool.ruff.lint]
select = [
    # pycodestyle
    "E",
    # Pyflakes
    "F",
    # pyupgrade
    # "UP",
    # flake8-bugbear
    "B",
    # flake8-simplify
    "SIM",
    # isort
    # "I",
]
ignore = [
    # star imports
    "F405", "F403",
    # lambda expression assignment
    "E731",
    # line too long, handled by black formatting
    "E501",
34
35
36
37
    # .strip() with multi-character strings
    "B005",
    # Loop control variable not used within loop body
    "B007",
38
]
39
40
41
42
43
44
45
46
47
48
49
50
51
52

[tool.mypy]
python_version = "3.8"

ignore_missing_imports = true

files = "vllm"
# TODO(woosuk): Include the code from Megatron and HuggingFace.
exclude = "vllm/model_executor/parallel_utils/|vllm/model_executor/models/"


[tool.codespell]
ignore-words-list = "dout, te, indicies"
skip = "./tests/prompts"