fix: add ignore for .c file for wheels (#1424) · python-zeroconf/python-zeroconf@6535963

Original file line numberDiff line numberDiff line change

@@ -34,6 +34,8 @@ include = [

3434

{ path = "docs", format = "sdist" },

3535

{ path = "tests", format = "sdist" },

3636

]

37+

# Make sure we don't package temporary C files generated by the build process

38+

exclude = [ "**/*.c" ]

3739
3840

[tool.poetry.urls]

3941

"Bug Tracker" = "https://github.com/python-zeroconf/python-zeroconf/issues"