Skip to content

Commit 1d4a65e

Browse files
authored
feat: add entrypoint for cmake modules dir (pybind#4258)
Signed-off-by: Henry Schreiner <[email protected]> Signed-off-by: Henry Schreiner <[email protected]>
1 parent c385468 commit 1d4a65e

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,8 @@ def remove_output(*sources: str) -> Iterator[None]:
144144
stdout=sys.stdout,
145145
stderr=sys.stderr,
146146
)
147+
if not global_sdist:
148+
Path("pybind11/share/cmake/pybind11/__init__.py").touch()
147149

148150
txt = get_and_replace(setup_py, version=version, extra_cmd=extra_cmd)
149151
code = compile(txt, setup_py, "exec")

tests/extra_python_package/test_files.py

+2
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ def test_build_sdist(monkeypatch, tmpdir):
166166
files |= {f"pybind11{n}" for n in local_sdist_files}
167167
files.add("pybind11.egg-info/entry_points.txt")
168168
files.add("pybind11.egg-info/requires.txt")
169+
files.add("pybind11/share/cmake/pybind11/__init__.py")
169170
assert simpler == files
170171

171172
with open(os.path.join(MAIN_DIR, "tools", "setup_main.py.in"), "rb") as f:
@@ -252,6 +253,7 @@ def tests_build_wheel(monkeypatch, tmpdir):
252253
"dist-info/entry_points.txt",
253254
"dist-info/top_level.txt",
254255
}
256+
files.add("pybind11/share/cmake/pybind11/__init__.py")
255257

256258
with zipfile.ZipFile(str(wheel)) as z:
257259
names = z.namelist()

tools/setup_main.py.in

+3
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ setup(
3838
],
3939
"pipx.run": [
4040
"pybind11 = pybind11.__main__:main",
41+
],
42+
"cmake.modules": [
43+
"pybind11 = pybind11.share.cmake.pybind11",
4144
]
4245
},
4346
cmdclass=cmdclass

0 commit comments

Comments
 (0)