예제 #1
0
파일: conf.py 프로젝트: mforbes/holoviews
def setup(app):
    app.connect('autodoc-process-docstring', param_formatter)
    try:
        import runipy # noqa (Warning import)
        nbbuild.setup(app)
    except:
        print('RunIPy could not be imported; pages including the '
              'Notebook directive will not build correctly')
예제 #2
0
파일: conf.py 프로젝트: marwan116/holoviews
def setup(app):
    app.connect('autodoc-process-docstring', param_formatter)
    try:
        import runipy # pyflakes:ignore (Warning import)
        nbbuild.setup(app)
    except:
        print('RunIPy could not be imported; pages including the '
              'Notebook directive will not build correctly')
예제 #3
0
def setup(app):
    for js in js_includes:
        app.add_javascript(js)

    try:
        import runipy # noqa (Warning import)
        nbbuild.setup(app)
    except:
        print('RunIPy could not be imported; pages including the '
              'Notebook directive will not build correctly')
예제 #4
0
파일: conf.py 프로젝트: marqh/geoviews
def setup(app):
    app.connect('autodoc-process-docstring', param_formatter)
    for js in js_includes:
        app.add_javascript(js)

    try:
        import runipy  # noqa (Warning import)
        nbbuild.setup(app)
    except:
        print('RunIPy could not be imported; pages including the '
              'Notebook directive will not build correctly')
예제 #5
0
파일: conf.py 프로젝트: ioam/featuremapper
def setup(app):
    app.connect('autodoc-process-docstring', param_formatter)
    nbbuild.setup(app)