jupyter-c-kernel/setup.py

13 lines
445 B
Python
Raw Normal View History

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',
2016-04-29 10:01:38 +01:00
version='1.0.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/',
download_url='https://github.com/brendanrius/jupyter-c-kernel/tarball/1.0.0',
2016-04-29 09:58:55 +01:00
packages=['jupyter_c_kernel'],
2016-04-29 09:59:42 +01:00
keywords=['jupyter', 'kernel', 'c']
2016-04-29 09:58:55 +01:00
)