Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include jupyter_c_kernel/resources/master.c
include jupyter_c_kernel/resources/stdio_wrap.h
include jupyter_c_kernel_wio/resources/master.c
include jupyter_c_kernel_wio/resources/stdio_wrap.h
include README.md LICENSE.txt
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ kernel_json = {
"argv": [
"python3",
"-m",
"jupyter_c_kernel",
"jupyter_c_kernel_wio",
"-f",
"{connection_file}"
],
"display_name": "C",
"display_name": "C-wio",
"language": "c"
}

Expand All @@ -29,7 +29,7 @@ def install_my_kernel_spec(user=True, prefix=None):
# TODO: Copy resources once they're specified

print('Installing IPython kernel spec')
KernelSpecManager().install_kernel_spec(td, 'c', user=user, prefix=prefix)
KernelSpecManager().install_kernel_spec(td, 'c-wio', user=user, prefix=prefix)


def _is_root():
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def read_all_from_queue(queue):


class CKernel(Kernel):
implementation = 'jupyter_c_kernel'
implementation = 'jupyter_c_kernel_wio'
implementation_version = '1.0'
language = 'c'
language_version = 'C11'
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from setuptools import setup

setup(name='jupyter_c_kernel',
setup(name='jupyter_c_kernel_wio',
version='1.2.1',
description='Minimalistic C kernel for Jupyter',
description='Minimalistic C kernel for Jupyter with input',
author='Brendan Rius',
author_email='ping@brendan-rius.com',
license='MIT',
Expand All @@ -11,8 +11,8 @@
],
url='https://github.com/brendan-rius/jupyter-c-kernel/',
download_url='https://github.com/brendan-rius/jupyter-c-kernel/tarball/1.2.1',
packages=['jupyter_c_kernel'],
scripts=['jupyter_c_kernel/install_c_kernel'],
keywords=['jupyter', 'notebook', 'kernel', 'c'],
packages=['jupyter_c_kernel_wio'],
scripts=['jupyter_c_kernel_wio/install_c_kernel_wio'],
keywords=['jupyter', 'notebook', 'kernel', 'c', 'c_wio'],
include_package_data=True
)