19 lines
433 B
Python
19 lines
433 B
Python
from extras.plugins import PluginConfig
|
|
|
|
|
|
class SLMConfig(PluginConfig):
|
|
name = 'netbox_slm'
|
|
verbose_name = 'Software Lifecycle Management'
|
|
description = 'Software Lifecycle Management Netbox Plugin.'
|
|
version = '1.4'
|
|
author = 'ICTU'
|
|
author_email = 'open-source-projects@ictu.nl'
|
|
base_url = 'slm'
|
|
required_settings = []
|
|
default_settings = {
|
|
'version_info': False
|
|
}
|
|
|
|
|
|
config = SLMConfig
|