2023-06-05 20:03:14 -07:00
|
|
|
[build-system]
|
2023-11-30 15:06:50 +08:00
|
|
|
# Should be mirrored in requirements-build.txt
|
2023-06-05 20:03:14 -07:00
|
|
|
requires = [
|
2024-03-18 18:38:33 -04:00
|
|
|
"cmake>=3.21",
|
2023-06-05 20:03:14 -07:00
|
|
|
"ninja",
|
|
|
|
"packaging",
|
2023-11-30 15:06:50 +08:00
|
|
|
"setuptools >= 49.4.0",
|
2023-12-17 01:46:54 -08:00
|
|
|
"torch == 2.1.2",
|
2023-06-05 20:03:14 -07:00
|
|
|
"wheel",
|
|
|
|
]
|
|
|
|
build-backend = "setuptools.build_meta"
|
2023-11-20 11:58:01 -08:00
|
|
|
|
2024-03-10 19:49:14 -07:00
|
|
|
[tool.ruff]
|
|
|
|
# Allow lines to be as long as 80.
|
|
|
|
line-length = 80
|
|
|
|
|
2023-11-20 11:58:01 -08:00
|
|
|
[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",
|
2024-02-22 02:56:01 +00:00
|
|
|
# Loop control variable not used within loop body
|
|
|
|
"B007",
|
2023-11-20 11:58:01 -08:00
|
|
|
]
|
2024-02-22 02:56:01 +00:00
|
|
|
|
|
|
|
[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"
|
2024-03-27 13:39:26 -07:00
|
|
|
skip = "./tests/prompts,./benchmarks/sonnet.txt"
|
2024-03-25 23:59:47 +09:00
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
use_parentheses = true
|
|
|
|
skip_gitignore = true
|