aboutsummaryrefslogtreecommitdiff
path: root/python/setup.py
blob: 307fcd402ec8f25c69a5731debd3ecd2bd844021 (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_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',
    ]
)