forked from mvonthron/munin-influxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 805 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='munin-influxdb',
version='1.2.2',
description='Munin to InfluxDB/Grafana gateway',
author='Manuel Vonthron',
author_email='[email protected]',
url='http://github.com/mvonthron/munin-influxdb',
license='BSD',
py_modules=['munininfluxdb'],
scripts=['muninflux'],
install_requires=['influxdb>=2.12.0', 'requests'],
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: System :: Monitoring',
]
)