diff --git a/README.md b/README.md index 4727860..28f92bc 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/mkdocs.yml b/mkdocs.yml index 929cd00..2a88b7e 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -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: diff --git a/netbox_napalm_plugin/__init__.py b/netbox_napalm_plugin/__init__.py index 3c9c976..58ef4ac 100644 --- a/netbox_napalm_plugin/__init__.py +++ b/netbox_napalm_plugin/__init__.py @@ -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