Skip to content

Commit

Permalink
Include .pyx sources in the release
Browse files Browse the repository at this point in the history
  • Loading branch information
person142 committed Jul 7, 2019
1 parent 74a2469 commit b9c8bea
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ def get_extension_modules():
author='Josh Wilson',
url='https://github.com/person142/numba_special',
packages=['numba_special'],
package_data={'numba_special': ['signatures.json']},
package_data={'numba_special': [
'signatures.json',
'function_pointers.pyx'
]},
ext_modules=get_extension_modules(),
install_requires=['numba', 'scipy']
)

0 comments on commit b9c8bea

Please sign in to comment.