2020-02-02 20:08:56 +01:00
|
|
|
from setuptools import find_packages, setup
|
2019-08-04 00:00:22 +02:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='netbox_agent',
|
2020-08-24 13:45:18 +02:00
|
|
|
version='0.6.2',
|
2019-08-04 00:00:22 +02:00
|
|
|
description='NetBox agent for server',
|
|
|
|
long_description=open('README.md', encoding="utf-8").read(),
|
2020-06-14 18:46:27 +02:00
|
|
|
long_description_content_type='text/markdown',
|
2019-08-04 00:00:22 +02:00
|
|
|
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"]),
|
2019-08-04 00:00:22 +02:00
|
|
|
use_scm_version=True,
|
2019-08-12 10:58:28 +02:00
|
|
|
install_requires=[
|
2021-05-11 20:47:16 +02:00
|
|
|
'pynetbox==6.1.2',
|
2020-07-28 18:54:48 +02:00
|
|
|
'netaddr==0.8.0',
|
2019-08-12 10:58:28 +02:00
|
|
|
'netifaces==0.10.9',
|
2021-03-26 16:00:40 +01:00
|
|
|
'pyyaml==5.4.1',
|
2020-07-28 18:54:34 +02:00
|
|
|
'jsonargparse==2.32.2',
|
2021-05-11 21:54:37 +02:00
|
|
|
'python-slugify==5.0.2',
|
|
|
|
'packaging==20.9',
|
2020-02-02 20:08:56 +01:00
|
|
|
],
|
2019-08-04 00:00:22 +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'],
|
|
|
|
}
|
|
|
|
)
|