-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 723 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (20 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import find_packages, setup
setup(
name="ipython_blocking",
version="0.3.2",
author="Matt Kafonek",
author_email="kafonek@gmail.com",
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", "nbclient"],
classifiers=[
"Framework :: IPython",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Development Status :: 3 - Alpha",
],
license="BSD",
)