netbox-agent/setup.py

34 lines
1,010 B
Python
Raw Normal View History

from setuptools import setup, find_packages
setup(
name='netbox_agent',
version='0.2',
description='NetBox agent for server',
long_description=open('README.md', encoding="utf-8").read(),
url='https://github.com/solvik/netbox_agent',
author='Solvik Blum',
author_email='solvik@solvik.fr',
license='Apache2',
include_package_data=True,
2019-08-13 17:29:06 +02:00
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
use_scm_version=True,
2019-08-12 10:58:28 +02:00
install_requires=[
'pynetbox==4.0.6',
'netaddr==0.7.19',
'netifaces==0.10.9',
'pyyaml==5.1.2',
'jsonargparse==2.2.1',
2019-08-12 10:58:28 +02:00
],
zip_safe=False,
keywords=['netbox'],
classifiers=[
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
entry_points={
'console_scripts': ['netbox_agent=netbox_agent.cli:main'],
}
)