We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 025b880 commit 4db4e8cCopy full SHA for 4db4e8c
1 file changed
setup.py
@@ -1097,11 +1097,23 @@ def run(self):
1097
'sparse_umfpack/test/*.py'
1098
]
1099
elif IS_LINUX:
1100
- # No need to include system libraries on Linux
1101
- pass
+ package_data['sparse_numba'] = [
+ 'sparse_superlu/*.py',
1102
+ 'sparse_superlu/*.so',
1103
+ 'sparse_superlu/test/*.py',
1104
+ 'sparse_umfpack/*.py',
1105
+ 'sparse_umfpack/*.so',
1106
+ 'sparse_umfpack/test/*.py'
1107
+ ]
1108
elif IS_MACOS:
- # For macOS, we might include dylibs if we're bundling them
1109
1110
1111
+ 'sparse_superlu/*.dylib',
1112
1113
1114
+ 'sparse_umfpack/*.dylib',
1115
1116
1117
1118
# Setup configuration
1119
packages=[
0 commit comments