Skip to content

Commit

Permalink
feat(docs): intersphinx (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Mar 31, 2024
1 parent 1c6a0a5 commit ddd66a3
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,17 @@
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.napoleon',
'sphinx.ext.intersphinx',
]

templates_path = ['_templates']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']


# Looks for objects in documentation of external libraries
intersphinx_mapping = {
'a_sync': ('https://bobthebuidler.github.io/ez-a-sync', None),
'y': ('https://bobthebuidler.github.io/ypricemagic', None),
}

# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
Expand All @@ -46,4 +51,4 @@

automodule_generate_module_stub = True

sys.path.insert(0, os.path.abspath('./eth_portfolio'))
sys.path.insert(0, os.path.abspath('./eth_portfolio'))

0 comments on commit ddd66a3

Please sign in to comment.