-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
26 lines (24 loc) · 879 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='ExpectException',
version='0.1.1',
description='Jupyter magic for exceptions',
long_description='Display exceptions and tracebacks in Jupyter notebooks without halting execution.',
author='Robert Schroll',
author_email='[email protected]',
url='https://github.com/thedataincubator/expectexception',
packages=['expectexception'],
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: IPython',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
]
)