view setup.py @ 72:40c903dde893

update master.c path to correspond to where pip install will put it
author Cody Horst <chorst@uw.edu>
date Fri, 08 Dec 2017 20:17:56 -0800
parents 828af72656e2
children b6b613c2a28a
line wrap: on
line source

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',
      url='https://github.com/brendanrius/jupyter-c-kernel/',
      download_url='https://github.com/brendanrius/jupyter-c-kernel/tarball/1.2.1',
      packages=['jupyter_c_kernel'],
      package_data={'jupyter_c_kernel': ['resources/']},
      scripts=['jupyter_c_kernel/install_c_kernel'],
      keywords=['jupyter', 'notebook', 'kernel', 'c']
      )