Skip to content

Commit

Permalink
update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
arthanson committed Feb 17, 2023
1 parent 42bb2da commit d62e943
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ The features the plugin provides should be listed here.

## Compatibility

> :warning: **NetBox 3.5 Beta**: This plugin is for NetBox 3.5 (Beta)
| NetBox Version | Plugin Version |
|----------------|----------------|
| 3.4 | 0.1.0 |
| 3.5 | 0.1.0 |

## Installing

Expand Down
2 changes: 2 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ repo_name: arthanson/netbox_napalm_plugin
#strict: true
nav:
- Home: index.md
- Configuration: configuration.md
- Integration: integration.md
- Contributing: contributing.md
- Changelog: changelog.md
theme:
Expand Down
7 changes: 6 additions & 1 deletion netbox_napalm_plugin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,13 @@ class NapalmPlatformConfig(PluginConfig):
name = "netbox_napalm_plugin"
verbose_name = "NetBox Napalm Plugin"
description = "NetBox plugin for Napalm."
version = "version"
version = __version__
author = __author__
author_email = __email__
base_url = "netbox_napalm_plugin"
required_settings = []
min_version = '3.5.0'
max_version = '3.5.99'


config = NapalmPlatformConfig

0 comments on commit d62e943

Please sign in to comment.