-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathsetup.py
25 lines (23 loc) · 853 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from distutils.core import setup
with open("README.rst", "r") as f:
readme = f.read()
setup(name='mobilechelonian',
version='0.5',
description='Turtles in the Jupyter Notebook',
long_description = readme,
author='Thomas Kluyver',
author_email='[email protected]',
url='https://github.com/takluyver/mobilechelonian',
packages=['mobilechelonian'],
package_data={'mobilechelonian': ['mobilechelonianjs/*.js']},
classifiers=[
'Framework :: IPython',
'Intended Audience :: Education',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Artistic Software',
'Topic :: Education',
],
install_requires=['IPython', 'ipywidgets>=7.0.0'],
)