Skip to content

Commit 65e262b

Browse files
authored
Fix Python packaging edge cases (#17159)
Signed-off-by: Christian Heimes <[email protected]>
1 parent 43faa04 commit 65e262b

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
# vllm-flash-attn built from source
55
vllm/vllm_flash_attn/*
6+
!vllm/vllm_flash_attn/__init__.py
67
!vllm/vllm_flash_attn/fa_utils.py
78

89
# Byte-compiled / optimized / DLL files

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@ vllm = "vllm.entrypoints.cli.main:main"
4646

4747
[tool.setuptools.packages.find]
4848
where = ["."]
49-
exclude = ["benchmarks", "csrc", "docs", "examples", "tests*"]
50-
namespaces = false
49+
include = ["vllm*"]
5150

5251
[tool.yapfignore]
5352
ignore_patterns = [

vllm/benchmarks/__init__.py

Whitespace-only changes.

vllm/vllm_flash_attn/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)