mirror of
https://github.com/lopes/netbox-scanner.git
synced 2025-07-01 19:14:37 +02:00
24 lines
657 B
Python
24 lines
657 B
Python
#!/usr/bin/env python3
|
|
|
|
import setuptools
|
|
|
|
with open('README.md', 'r') as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name='netbox-scanner',
|
|
version='0.3.1',
|
|
author='José Lopes de Oliveira Jr.',
|
|
author_email='jlojunior@gmail.com',
|
|
description='A scanner util for NetBox',
|
|
long_description=long_description,
|
|
long_description_content_type='text/markdown',
|
|
url='https://github.com/forkd/netbox-scanner',
|
|
packages=setuptools.find_packages(),
|
|
classifiers=[
|
|
'Programming Language :: Python :: 3',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Operating System :: OS Independent',
|
|
],
|
|
)
|