File tree Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,16 @@ def parse_version():
105
105
return match .group (1 )
106
106
107
107
108
+ _pkg_files = [
109
+ "**/*.pxd" ,
110
+ "**/*.pyx" ,
111
+ "**/*.pxd" ,
112
+ "*.so" ,
113
+ "*.dylib" ,
114
+ "*.dll" ,
115
+ ]
116
+
117
+
108
118
setup (
109
119
name = "pyfury" ,
110
120
version = parse_version (),
@@ -113,14 +123,9 @@ def parse_version():
113
123
maintainer = "https://github.com/chaokunyang" ,
114
124
maintainer_email = "[email protected] " ,
115
125
package_data = {
116
- "pyfury" : [
117
- "**/*.pxd" ,
118
- "**/*.pyx" ,
119
- "includes/*.pxd" ,
120
- "**/*.so" ,
121
- "**/*.dylib" ,
122
- "**/*.dll" ,
123
- ]
126
+ "pyfury" : _pkg_files ,
127
+ "pyfury.format" : _pkg_files ,
128
+ "pyfury.lib.mmh3" : _pkg_files ,
124
129
},
125
130
include_package_data = True ,
126
131
packages = find_packages (),
You can’t perform that action at this time.
0 commit comments