Change package name

This commit is contained in:
Brendan Rius 2016-04-29 09:58:55 +01:00
parent 97647c0bd9
commit e6061bd9b6
4 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ import os
class CKernel(Kernel):
implementation = 'c_kernel'
implementation = 'jupyter_c_kernel'
implementation_version = '1.0'
language = 'c'
language_version = 'C11'

View File

@ -5,5 +5,5 @@ setup(name='jupyter_c_kernel',
description='Minimalistic C kernel for Jupyter',
author='Brendan Rius',
author_email='ping@brendan-rius.com',
packages=['c_kernel'],
)
packages=['jupyter_c_kernel'],
)