Skip to content

Commit 2fbd804

Browse files
author
Murilo Marinho
committed
[setup.py] Excluding pybind11 and tests from package generation as those can conflict with other installations.
1 parent 40be87c commit 2fbd804

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def build_extension(self, ext):
6969
ext_modules=[CMakeExtension('dqrobotics._dqrobotics')],
7070
cmdclass=dict(build_ext=CMakeBuild),
7171
zip_safe=False,
72-
packages=find_namespace_packages(where='.'),
72+
packages=find_namespace_packages(where='.', exclude=['*pybind11*', '*tests*']),
7373
package_data={
7474
'dqrobotics-stubs': ["**/*.pyi"],
7575
},

0 commit comments

Comments
 (0)