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
+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,
)