comparison setup.py @ 70:eec68d0a113e

Bump to 1.2.1
author Brendan Rius <brendan.rius@gmail.com>
date Sun, 13 Aug 2017 17:03:43 +0200
parents f7b9bc7445e2
children 828af72656e2
comparison
equal deleted inserted replaced
69:79199ce31269 70:eec68d0a113e
1 from setuptools import setup 1 from setuptools import setup
2 2
3 setup(name='jupyter_c_kernel', 3 setup(name='jupyter_c_kernel',
4 version='1.2.0', 4 version='1.2.1',
5 description='Minimalistic C kernel for Jupyter', 5 description='Minimalistic C kernel for Jupyter',
6 author='Brendan Rius', 6 author='Brendan Rius',
7 author_email='ping@brendan-rius.com', 7 author_email='ping@brendan-rius.com',
8 url='https://github.com/brendanrius/jupyter-c-kernel/', 8 url='https://github.com/brendanrius/jupyter-c-kernel/',
9 download_url='https://github.com/brendanrius/jupyter-c-kernel/tarball/1.2.0', 9 download_url='https://github.com/brendanrius/jupyter-c-kernel/tarball/1.2.1',
10 packages=['jupyter_c_kernel'], 10 packages=['jupyter_c_kernel'],
11 scripts=['jupyter_c_kernel/install_c_kernel'], 11 scripts=['jupyter_c_kernel/install_c_kernel'],
12 keywords=['jupyter', 'notebook', 'kernel', 'c'] 12 keywords=['jupyter', 'notebook', 'kernel', 'c']
13 ) 13 )