mirror of
https://github.com/XaverKlemenschits/jupyter-c-kernel.git
synced 2025-04-15 19:06:08 +00:00
10 lines
250 B
Python
10 lines
250 B
Python
from distutils.core import setup
|
|
|
|
setup(name='jupyter_c_kernel',
|
|
version='1.0',
|
|
description='Minimalistic C kernel for Jupyter',
|
|
author='Brendan Rius',
|
|
author_email='ping@brendan-rius.com',
|
|
packages=['c_kernel'],
|
|
)
|