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-13 17:01:59 +02:00
|
|
|
version='1.2.1',
|
2016-03-26 14:54:39 +00:00
|
|
|
description='Minimalistic C kernel for Jupyter',
|
|
|
|
author='Brendan Rius',
|
|
|
|
author_email='ping@brendan-rius.com',
|
2018-03-15 02:17:02 -04:00
|
|
|
license='MIT',
|
|
|
|
classifiers=[
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
],
|
2018-06-03 08:13:32 +08:00
|
|
|
url='https://github.com/brendan-rius/jupyter-c-kernel/',
|
|
|
|
download_url='https://github.com/brendan-rius/jupyter-c-kernel/tarball/1.2.1',
|
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'],
|
2018-01-23 22:34:24 -08:00
|
|
|
keywords=['jupyter', 'notebook', 'kernel', 'c'],
|
|
|
|
include_package_data=True
|
2016-04-29 09:58:55 +01:00
|
|
|
)
|