forked from kafonek/ipython_blocking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (17 loc) · 817 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
from setuptools import setup, find_packages
setup(name='ipython_blocking',
version='0.2.1',
author='Matt Kafonek',
author_email='[email protected]',
url='https://github.com/kafonek/ipython_blocking',
description='Context manager for blocking cell execution within a Jupyter notebook',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type = 'text/markdown',
packages=find_packages(),
install_requires=['IPython', 'ipywidgets'],
classifiers = ['Framework :: IPython',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Development Status :: 3 - Alpha',
],
license='BSD')