Files
mrb-netbox-topology-views/setup.py
T
2022-05-10 09:28:21 +02:00

23 lines
652 B
Python

from setuptools import setup, find_packages
setup(
name='netbox-topology-views',
version='1.2.0',
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,
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
],
project_urls={
'Source': 'https://github.com/mattieserver/netbox-topology-views',
},
)