Fix setuptools record of headers

This commit is contained in:
Isuru Fernando 2020-04-26 14:56:10 +00:00 committed by Wenzel Jakob
parent ab323e04f3
commit e107fc2a05
1 changed files with 7 additions and 0 deletions

View File

@ -67,6 +67,13 @@ class BuildPy(build_py):
self.mkpath(os.path.dirname(target))
self.copy_file(header, target, preserve_mode=False)
def get_outputs(self, include_bytecode=1):
outputs = build_py.get_outputs(self, include_bytecode=include_bytecode)
for header in package_data:
target = os.path.join(self.build_lib, 'pybind11', header)
outputs.append(target)
return outputs
setup(
name='pybind11',