We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 285cb4c commit 712d600Copy full SHA for 712d600
python/setup.py
@@ -105,6 +105,16 @@ def parse_version():
105
return match.group(1)
106
107
108
+_pkg_files = [
109
+ "**/*.pxd",
110
+ "**/*.pyx",
111
112
+ "*.so",
113
+ "*.dylib",
114
+ "*.dll",
115
+]
116
+
117
118
setup(
119
name="pyfury",
120
version=parse_version(),
@@ -113,14 +123,9 @@ def parse_version():
123
maintainer="https://github.com/chaokunyang",
124
maintainer_email="[email protected]",
125
package_data={
- "pyfury": [
- "**/*.pxd",
- "**/*.pyx",
- "includes/*.pxd",
- "**/*.so",
121
- "**/*.dylib",
122
- "**/*.dll",
- ]
126
+ "pyfury": _pkg_files,
127
+ "pyfury.format": _pkg_files,
128
+ "pyfury.lib.mmh3": _pkg_files,
129
},
130
include_package_data=True,
131
packages=find_packages(),
0 commit comments