notebook/scripts/jupyter-bundlerextension
Peter Parente de7753402b Cleanup CLI naming
Based on first review by @minrk

* bundlerextension for consistency
* Move CLI entry point into bundler package
* Add bundler/__main__.py

(c) Copyright IBM Corp. 2016
2016-07-02 14:57:10 -04:00

9 lines
215 B
Python

#!/usr/bin/env python
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
from notebook.bundler.bundlerextensions import main
if __name__ == '__main__':
main()