mirror of
https://github.com/lucaspalomodevelop/netbox-acls.git
synced 2026-03-12 23:27:23 +00:00
14 lines
282 B
Python
14 lines
282 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='netbox-access-lists',
|
|
version='0.1',
|
|
description='An example NetBox plugin',
|
|
license='Apache 2.0',
|
|
install_requires=[],
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
)
|
|
|