initial structure

This commit is contained in:
mattijs vanhaverbeke
2020-04-15 11:35:42 +02:00
parent f953d8119d
commit 2543f63f7f
7 changed files with 30 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
from extras.plugins import PluginConfig
class TopologyViewsConfig(PluginConfig):
name = 'netbox_topology_views'
verbose_name = 'Topology views'
description = 'An plugin to render toplogoy maps'
version = '0.1'
author = 'Mattijs Vanhaverbeke'
author_email = 'author@example.com'
base_url = 'topology-views'
required_settings = []
default_settings = {
'loud': False
}
config = TopologyViewsConfig
View File
View File
View File
View File
+14
View File
@@ -0,0 +1,14 @@
from setuptools import setup, find_packages
setup(
name='netbox-topology-views',
version='0.1',
description='An NetBox plugin to create Topology maps',
url='https://github.com/mattieserver/netbox-topology-views',
author='Mattijs Vanhaverbeke',
license='Apache 2.0',
install_requires=[],
packages=find_packages(),
include_package_data=True,
)