cli metrics, fixes

This commit is contained in:
Arseniy Kuznetsov
2021-01-17 20:34:17 +01:00
parent 8faa12786f
commit 31d0464eb2
28 changed files with 499 additions and 147 deletions

View File

@@ -20,7 +20,7 @@ with open(path.join(pkg_dir, 'README.md'), encoding='utf-8') as f:
setup(
name='mktxp',
version='0.20',
version='0.21',
url='https://github.com/akpw/mktxp',
@@ -43,7 +43,13 @@ setup(
keywords = 'Mikrotik RouterOS Prometheus Exporter',
install_requires = ['prometheus-client>=0.9.0', 'RouterOS-api>=0.17.0', 'configobj>=5.0.6'],
install_requires = ['prometheus-client>=0.9.0',
'RouterOS-api>=0.17.0',
'configobj>=5.0.6',
'humanize>=3.2.0',
'tabulate>=0.8.7',
'speedtest-cli>=2.1.2'
],
test_suite = 'tests.mktxp_test_suite',