mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-18 11:55:46 +08:00
de7753402b
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
9 lines
215 B
Python
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()
|