Skip to content
This repository was archived by the owner on Jan 27, 2025. It is now read-only.

Commit

Permalink
Merge pull request #24 from menckend/main
Browse files Browse the repository at this point in the history
Merge pull request #23 from menckend/test
  • Loading branch information
menckend authored Oct 24, 2024
2 parents 7aade65 + 6831c51 commit 1d7b474
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

I wrote this package (dcnodatg) specifically to assist in *fast/low-effort* modeling of a production EVPN Layer-3 Leaf & Spine physical network of Arista switches in a pre-existing GNS3 server, using Arista cEOS docker images. (Also, to teach myself how to write/publish Python packages, but *really* for modeling Arista switches.)

- Documentation at: [https://menckend.github.io/dcnodatg/](https://menckend.github.io/dcnodatg/)
- Repository at: [https://github.com/menckend/dcnodatg](https://github.com/menckend/dcnodatg)
- (Latest) Package at: [https://pypi.org/project/dcnodatg/](https://pypi.org/project/dcnodatg/)
- (testing) Package at: [https://test.pypi.org/project/dcnodatg/](https://test.pypi.org/project/dcnodatg/)
- [Documentation](https://menckend.github.io/dcnodatg/)
- [Repository](https://github.com/menckend/dcnodatg)
- [(Latest) Package](https://pypi.org/project/dcnodatg/)
- [(testing) Package](https://test.pypi.org/project/dcnodatg/)

## What it does

Expand Down
5 changes: 3 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
'sphinx.ext.intersphinx', # Link to other project's documentation (see mapping below)
'sphinx.ext.viewcode', # Add a link to the Python source code for classes, functions etc.
'sphinx_autodoc_typehints', # Automatically document param types (less noise in class signature)
'sphinx.ext.autodoc.typehints',
'autoapi.extension'
]

Expand All @@ -38,7 +39,7 @@
exclude_patterns = ['_build', '_templates', 'Thumbs.db', '.DS_Store']
html_show_sourcelink = False # Remove 'view source code' from top of page (for html, not python)
html_theme = 'sphinx_rtd_theme'
autodoc_typehints = "signature"
autodoc_typehints = "description"
autoapi_template_dir = "_templates/autoapi"
#autodoc_class_signature = "separated"
autoapi_own_page_level = "function"
Expand Down Expand Up @@ -95,7 +96,7 @@ def prepare_jinja_env(jinja_env) -> None:
# Toc options
'collapse_navigation': True,
'sticky_navigation': True,
'navigation_depth': 5,
'navigation_depth': -1,
'includehidden': True,
'titles_only': False
}

0 comments on commit 1d7b474

Please sign in to comment.