aboutsummaryrefslogtreecommitdiff
path: root/python/setup.py
blob: eed2f4b79bb85faf6db7ffd12fa5ac17fd8e52a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup


setup(name='toree_proxy_kernel',
    version='0.1',
    description='Toree Client Proxy Kernel',
    long_description='A simple echo kernel for Jupyter/IPython, based on MetaKernel',
    py_modules=['toree_proxy_kernel'],
    install_requires=['metakernel', 'py4j'],
    classifiers = [
        'Framework :: IPython',
        'License :: OSI Approved :: BSD License',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 2',
        'Topic :: System :: Shells',
    ]
)