Don't pack netgen python files with setup.py

These files are already installed/packed by skbuild (and possibly into another
directory, leading to confusion/not finding shared libraries at
runtime)
This commit is contained in:
mhochsteger@cerbsim.com 2022-02-04 15:05:19 +01:00
parent 11f7d64c41
commit 9f9a7a3b71

View File

@ -99,7 +99,7 @@ setup(
author='The Netgen team',
license="LGPL2.1",
packages=['netgen'],
package_dir={'netgen': 'python'},
#package_dir={'netgen': 'python'},
tests_require=['pytest'],
include_package_data=True,
cmake_process_manifest_hook=install_filter,