Skip to content

Commit 2cdee69

Browse files
committed
fix: update package_data to include header and source files for valgrind wrapper
1 parent 11de031 commit 2cdee69

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

setup.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,11 @@
5050
)
5151

5252
setup(
53-
exclude_package_data={
54-
"pytest_codspeed.instruments.valgrind._wrapper": [
55-
"*.c",
56-
"*.h",
57-
"build.py",
58-
],
53+
package_data={
54+
"pytest_codspeed": [
55+
"instruments/valgrind/_wrapper/*.h",
56+
"instruments/valgrind/_wrapper/*.c",
57+
]
5958
},
6059
ext_modules=(
6160
[ffi_extension] if IS_EXTENSION_BUILDABLE and not SKIP_EXTENSION_BUILD else []

0 commit comments

Comments
 (0)