alter package structure, moving resources under parent module.

This commit is contained in:
Cody Horst 2018-01-23 22:34:24 -08:00
parent d02720cc84
commit d29d9e8167
3 changed files with 3 additions and 2 deletions

1
MANIFEST.in Normal file
View File

@ -0,0 +1 @@
include jupyter_c_kernel/resources/master.c

View File

@ -8,7 +8,7 @@ setup(name='jupyter_c_kernel',
url='https://github.com/brendanrius/jupyter-c-kernel/',
download_url='https://github.com/brendanrius/jupyter-c-kernel/tarball/1.2.1',
packages=['jupyter_c_kernel'],
package_data={'jupyter_c_kernel': ['resources/']},
scripts=['jupyter_c_kernel/install_c_kernel'],
keywords=['jupyter', 'notebook', 'kernel', 'c']
keywords=['jupyter', 'notebook', 'kernel', 'c'],
include_package_data=True
)