# HG changeset patch # User musou_aka <> # Date 1529738302 -32400 # Node ID 97e3482efe957753596515d8a3a69ab4704f48a8 # Parent 70e6b10d92202650eca866d9cc41d6e900632393 fix setup.py diff -r 70e6b10d9220 -r 97e3482efe95 setup.py --- a/setup.py Sat Jun 23 16:11:53 2018 +0900 +++ b/setup.py Sat Jun 23 16:18:22 2018 +0900 @@ -1,18 +1,18 @@ from setuptools import setup -setup(name='jupyter_c_kernel', - version='1.2.1', - description='Minimalistic C kernel for Jupyter', - author='Brendan Rius', - author_email='ping@brendan-rius.com', +setup(name='jupyter_CbC_kernel', + version='0.1', + description='Minimalistic CbC kernel for Jupyter', + author='e155753', + #author_email='ping@brendan-rius.com', license='MIT', classifiers=[ 'License :: OSI Approved :: MIT License', ], - url='https://github.com/brendan-rius/jupyter-c-kernel/', - download_url='https://github.com/brendan-rius/jupyter-c-kernel/tarball/1.2.1', - packages=['jupyter_c_kernel'], - scripts=['jupyter_c_kernel/install_c_kernel'], - keywords=['jupyter', 'notebook', 'kernel', 'c'], + #url='https://github.com/brendan-rius/jupyter-c-kernel/', + #download_url='https://github.com/brendan-rius/jupyter-c-kernel/tarball/1.2.1', + packages=['jupyter_CbC_kernel'], + scripts=['jupyter_CbC_kernel/install_c_kernel'], + #keywords=['jupyter', 'notebook', 'kernel', 'CbC'], include_package_data=True )