forked from takluyver/mobilechelonian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 908 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
26
from distutils.core import setup
with open("README.md", "r") as f:
readme = f.read()
setup(name='tortuemobile',
version='0.5.2',
description='Un module pour les tortues dans les cahiers Jupyter.',
long_description = readme,
long_description_content_type = "text/markdown",
author='David Hay',
author_email='[email protected]',
url='https://github.com/callysto/tortuemobile',
packages=['tortuemobile'],
package_data={'tortuemobile': ['tortuemobilejs/*.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'],
)