2016-04-29 10:35:38 +01:00
|
|
|
from setuptools import setup
|
2016-03-26 14:54:39 +00:00
|
|
|
|
|
|
|
setup(name='jupyter_c_kernel',
|
2017-08-10 17:01:40 +02:00
|
|
|
version='1.2.0',
|
2016-03-26 14:54:39 +00:00
|
|
|
description='Minimalistic C kernel for Jupyter',
|
|
|
|
author='Brendan Rius',
|
|
|
|
author_email='ping@brendan-rius.com',
|
2016-04-29 10:05:16 +01:00
|
|
|
url='https://github.com/brendanrius/jupyter-c-kernel/',
|
2017-08-10 17:01:40 +02:00
|
|
|
download_url='https://github.com/brendanrius/jupyter-c-kernel/tarball/1.2.0',
|
2016-04-29 09:58:55 +01:00
|
|
|
packages=['jupyter_c_kernel'],
|
2017-08-10 17:00:32 +02:00
|
|
|
scripts=['jupyter_c_kernel/install_c_kernel'],
|
|
|
|
keywords=['jupyter', 'notebook', 'kernel', 'c']
|
2016-04-29 09:58:55 +01:00
|
|
|
)
|