-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 730 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
setup(name='turtle-kernel',
version='0.1.0',
description='A simple echo turtle kernel for Jupyter/IPython',
long_description='A simple echo turle kernel for Jupyter/IPython, based on MetaKernel Echo',
url='https://github.com/calysto/metakernel/tree/master/metakernel_echo',
author='Douglas Blank',
author_email='doug.blank@gmail.com',
py_modules=['turtle_kernel'],
install_requires=['metakernel'],
classifiers = [
'Framework :: IPython',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2',
'Topic :: System :: Shells',
]
)