aboutsummaryrefslogtreecommitdiff
path: root/python/setup.py
diff options
context:
space:
mode:
authorBrian Burns <brian.p.burns@gmail.com>2017-01-08 17:21:20 -0500
committerBrian Burns <brian.p.burns@gmail.com>2017-01-08 17:21:20 -0500
commit8f90b78820a2c07e4ed79ba1973d93706aff70cb (patch)
tree82f3fbc0fc9189a716ef6076c5cdeec18b135318 /python/setup.py
parent22099a4b1c7c5f1f225b5cc1b257855d558d1905 (diff)
downloadtoree-gateway-8f90b78820a2c07e4ed79ba1973d93706aff70cb.tar.gz
toree-gateway-8f90b78820a2c07e4ed79ba1973d93706aff70cb.tar.bz2
toree-gateway-8f90b78820a2c07e4ed79ba1973d93706aff70cb.zip
python kernel
Diffstat (limited to 'python/setup.py')
-rw-r--r--python/setup.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/python/setup.py b/python/setup.py
new file mode 100644
index 0000000..307fcd4
--- /dev/null
+++ b/python/setup.py
@@ -0,0 +1,17 @@
+from setuptools import setup
+
+
+setup(name='toree_kernel',
+ version='0.1',
+ description='Toree Client Kernel',
+ long_description='A simple echo kernel for Jupyter/IPython, based on MetaKernel',
+ py_modules=['toree_kernel'],
+ install_requires=['metakernel', 'py4j'],
+ classifiers = [
+ 'Framework :: IPython',
+ 'License :: OSI Approved :: BSD License',
+ 'Programming Language :: Python :: 3',
+ 'Programming Language :: Python :: 2',
+ 'Topic :: System :: Shells',
+ ]
+)