__init__.py
11 lines
| 419 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") | ||||
Scott Sanderson
|
r18693 | # Packagers: modify this line if you store the notebook template files elsewhere | ||
DEFAULT_TEMPLATE_FILES_PATH = os.path.join(os.path.dirname(__file__), "templates") | ||||
MinRK
|
r6630 | |||
MinRK
|
r10199 | del os | ||
MinRK
|
r15222 | |||
Scott Sanderson
|
r18693 | from .nbextensions import install_nbextension | ||