diff --git a/README.md b/README.md index d1107aa..a9b48d1 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,6 @@ jupyter cms quick-setup --sys-prefix # jupyter serverextension enable --py jupyter_cms --sys-prefix # jupyter nbextension install --py jupyter_cms --sys-prefix # jupyter nbextension enable --py jupyter_cms --sys-prefix -# jupyter bundler enable --py jupyter_cms --sys-prefix ``` In Jupyter Notebook 4.1 and 4.0, you install and activate the extension like so: @@ -60,7 +59,6 @@ In Jupyter Notebook >=4.2: # See jupyter cms quick-remove --help for other options (e.g., --user) jupyter cms quick-remove --sys-prefix # The above command is equivalent to this sequence of commands: -# jupyter bundler disable --py jupyter_cms --sys-prefix # jupyter nbextension disable --py jupyter_cms --sys-prefix # jupyter nbextension uninstall --py jupyter_cms --sys-prefix # jupyter serverextension disable --py jupyter_cms --sys-prefix diff --git a/scripts/jupyter-bundler b/scripts/jupyter-bundler deleted file mode 100644 index 1037df9..0000000 --- a/scripts/jupyter-bundler +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env python -# Copyright (c) Jupyter Development Team. -# Distributed under the terms of the Modified BSD License. -import jupyter_cms.bundlerapp - -if __name__ == '__main__': - jupyter_cms.bundlerapp.main() diff --git a/setup.py b/setup.py index 273405d..47a34c3 100644 --- a/setup.py +++ b/setup.py @@ -39,8 +39,6 @@ * IPython kernel extension to make notebooks importable, and notebook cells injectable via # and # annotations * Full-page drag-and-drop upload target * Pop-over table of contents navigation for notebooks -* Plugin system for deploying and downloading notebook bundles -* Example *IPython Notebook bundle (.zip)* download bundler See `the project README `_ for more information. @@ -55,7 +53,6 @@ include_package_data=True, scripts=[ 'scripts/jupyter-cms', - 'scripts/jupyter-bundler' ], install_requires=install_requires, classifiers=[ @@ -76,7 +73,6 @@ setup_args['entry_points'] = { 'console_scripts': [ 'jupyter-cms = jupyter_cms.extensionapp:main', - 'jupyter-bundler = jupyter_cms.bundlerapp:main' ] } # Don't bother installing the .py scripts if if we're using entrypoints