Fix Python packaging edge cases (#17159)

Signed-off-by: Christian Heimes <christian@python.org>
This commit is contained in:
Christian Heimes
2025-04-26 00:15:07 +02:00
committed by GitHub
parent 43faa0461a
commit 65e262b93b
4 changed files with 2 additions and 2 deletions

1
.gitignore vendored
View File

@ -3,6 +3,7 @@
# vllm-flash-attn built from source
vllm/vllm_flash_attn/*
!vllm/vllm_flash_attn/__init__.py
!vllm/vllm_flash_attn/fa_utils.py
# Byte-compiled / optimized / DLL files

View File

@ -46,8 +46,7 @@ vllm = "vllm.entrypoints.cli.main:main"
[tool.setuptools.packages.find]
where = ["."]
exclude = ["benchmarks", "csrc", "docs", "examples", "tests*"]
namespaces = false
include = ["vllm*"]
[tool.yapfignore]
ignore_patterns = [

View File

View File