コード例 #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
ファイル: conf.py プロジェクト: corinnebosley/filofax
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)