forked from prometheus-pve/prometheus-pve-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (37 loc) · 1.18 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
from setuptools import find_packages
from setuptools import setup
setup(
name="prometheus-pve-exporter",
version="3.0.2",
author="Lorenz Schori",
author_email="[email protected]",
description=("Proxmox VE exporter for the Prometheus monitoring system."),
long_description=open('README.rst').read(),
license="Apache Software License 2.0",
keywords="prometheus exporter network monitoring proxmox",
url="https://github.com/prometheus-pve/prometheus-pve-exporter",
package_dir={"": "src"},
packages=find_packages('src'),
entry_points={
'console_scripts': [
'pve_exporter=pve_exporter.cli:main',
],
},
python_requires=">=3.9",
install_requires=[
"prometheus_client>=0.0.11",
"proxmoxer",
"pyyaml",
"requests",
'Werkzeug',
'gunicorn',
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking :: Monitoring",
"License :: OSI Approved :: Apache Software License",
],
)