From a2b8ddddc11ef25363dc5986f0ea2546f9a9e75a Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Wed, 30 Jul 2014 21:05:29 -0500 Subject: Initial translation from bash kernel to octave kernel --- setup.py | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index c20ddd8..26e4fea 100644 --- a/setup.py +++ b/setup.py @@ -2,11 +2,12 @@ from distutils.core import setup from distutils.command.install import install import sys + class install_with_kernelspec(install): def run(self): install.run(self) from IPython.kernel.kernelspec import install_kernel_spec - install_kernel_spec('kernelspec', 'bash', replace=True) + install_kernel_spec('kernelspec', 'octave', replace=True) with open('README.rst') as f: readme = f.read() @@ -16,20 +17,20 @@ if svem_flag in sys.argv: # Die, setuptools, die. sys.argv.remove(svem_flag) -setup(name='bash_kernel', - version='0.2', - description='A bash kernel for IPython', +setup(name='octave_kernel', + version='0.1', + description='An Octave kernel for IPython', long_description=readme, - author='Thomas Kluyver', - author_email='thomas@kluyver.me.uk', - url='https://github.com/takluyver/bash_kernel', - py_modules=['bash_kernel'], + author='Steven Silvester', + author_email='steven.silvester@ieee.org', + url='https://github.com/blink1073/octave_kernel', + py_modules=['octave_kernel'], cmdclass={'install': install_with_kernelspec}, - install_requires=['pexpect>=3.3'], + install_requires=['oct2py'], classifiers = [ 'Framework :: IPython', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python :: 3', 'Topic :: System :: Shells', ] -) \ No newline at end of file +) -- cgit