bump version to 0.2 and update setup.py dependencies

This commit is contained in:
Solvik Blum 2019-09-03 13:29:31 +02:00
parent d12ac49d50
commit a30f86b04f
No known key found for this signature in database
GPG key ID: CC12B3DC262B6C47

View file

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup( setup(
name='netbox_agent', name='netbox_agent',
version='0.1', version='0.2',
description='NetBox agent for server', description='NetBox agent for server',
long_description=open('README.md', encoding="utf-8").read(), long_description=open('README.md', encoding="utf-8").read(),
url='https://github.com/solvik/netbox_agent', url='https://github.com/solvik/netbox_agent',
@ -16,6 +16,8 @@ setup(
'pynetbox==4.0.6', 'pynetbox==4.0.6',
'netaddr==0.7.19', 'netaddr==0.7.19',
'netifaces==0.10.9', 'netifaces==0.10.9',
'pyyaml==5.1.2',
'jsonargparse==2.2.1',
], ],
zip_safe=False, zip_safe=False,
keywords=['netbox'], keywords=['netbox'],