We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a853d9 commit 35a75e8Copy full SHA for 35a75e8
MANIFEST.in
@@ -7,6 +7,7 @@ recursive-include pkg_resources *.py *.txt
7
recursive-include pkg_resources/tests/data *
8
recursive-include tools *
9
recursive-include newsfragments *
10
+graft setuptools/tests/macosx_libfile/
11
include *.py
12
include *.rst
13
include MANIFEST.in
pyproject.toml
@@ -208,8 +208,10 @@ exclude = [
208
namespaces = true
209
210
[tool.setuptools.exclude-package-data]
211
-# Remove ruff.toml when installing vendored packages (#4652)
212
-"*" = ["ruff.toml"]
+"*" = [
+ "ruff.toml", # Remove ruff.toml when installing vendored packages (#4652)
213
+ "*.dylib", # Avoid distributing obscure binary test files for macos_libfile in wheel (#4965)
214
+]
215
216
[tool.distutils.sdist]
217
formats = "zip"
0 commit comments