Skip to content

Commit

Permalink
Include .pxd files in sdist
Browse files Browse the repository at this point in the history
  • Loading branch information
isaksamsten committed Feb 10, 2021
1 parent 16d92b1 commit 930e1c6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,9 @@ def declare_extensions(ext_module, ext_files, **kwargs):
ext_modules=cython_ext_modules,
packages=find_packages(),
package_data={
"wildboar": ["*.pxd", "*.pyx", "*.c"],
"wildboar.datasets._resources": ["*.txt"],
"wildboar": ["*.pxd", "*.pyx"],
"wildboar.distance": ["*.pxd"],
"wildboar.tree": ["*.pxd"],
},
zip_safe=False,
)

0 comments on commit 930e1c6

Please sign in to comment.