mirror of
https://github.com/lucaspalomodevelop/netbox-acls.git
synced 2026-03-12 23:27:23 +00:00
12 lines
273 B
Python
12 lines
273 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='netbox-access-lists',
|
|
version='0.2',
|
|
description='A NetBox plugin for Access-List management',
|
|
install_requires=[],
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
)
|