mirror of
https://github.com/lopes/netbox-scanner.git
synced 2025-07-22 21:34:56 +02:00
pypi packaging done
This commit is contained in:
parent
c64d9bb369
commit
ab3c16201b
29
setup.py
29
setup.py
@ -1,16 +1,23 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
from setuptools import setup
|
import setuptools
|
||||||
from codecs import open
|
|
||||||
|
|
||||||
setup(
|
with open("README.md", "r") as fh:
|
||||||
name='netbox-scanner',
|
long_description = fh.read()
|
||||||
packages=['netbox-scanner'],
|
|
||||||
version='0.0.2',
|
setuptools.setup(
|
||||||
description='',
|
name="netbox-scanner",
|
||||||
long_description=open('README.txt',encoding='utf-8').read(),
|
version="0.0.3",
|
||||||
author='José Lopes de Oliveira Jr.',
|
author='José Lopes de Oliveira Jr.',
|
||||||
license='MIT License',
|
author_email="jlojunior@gmail.com",
|
||||||
url='https://github.com/forkd/netbox-scanner',
|
description="A scanner util for NetBox",
|
||||||
keywords=['netbox','ipam','network','scanner']
|
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",
|
||||||
|
],
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user