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 = [
|
|
|
|
"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
|
|
|
|
|
|
|
[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",
|
2024-02-22 02:56:01 +00:00
|
|
|
# .strip() with multi-character strings
|
|
|
|
"B005",
|
|
|
|
# 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"
|
|
|
|
skip = "./tests/prompts"
|