__init__.py
8 lines
| 254 B
| text/x-python
|
PythonLexer
MinRK
|
r4856 | """The IPython HTML Notebook""" | |
MinRK
|
r10199 | import os | |
# Packagers: modify this line if you store the notebook static files elsewhere | |||
DEFAULT_STATIC_FILES_PATH = os.path.join(os.path.dirname(__file__), "static") | |||
MinRK
|
r6630 | ||
MinRK
|
r10199 | del os | |
MinRK
|
r15222 | ||
from .nbextensions import install_nbextension |