forked from cirrax/openstack-nagios-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (60 loc) · 2.28 KB
/
pyproject.toml
File metadata and controls
66 lines (60 loc) · 2.28 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "openstack-nagios-plugins"
version = "2.0.0"
description = "nagios/icinga plugins to monitor an openstack installation"
authors = [
{ name = "Jan Graichen", email = "jan.graichen@hpi.de" },
{ name = "Benedikt Trefzer", email = "benedikt.trefzer@cirrax.com" },
]
dependencies = [
"gnocchiclient",
"nagiosplugin",
"pankoclient",
"python-ceilometerclient",
"python-cinderclient",
"python-glanceclient",
"python-keystoneclient",
"python-neutronclient",
"python-novaclient",
]
requires-python = ">=3.10"
readme = "README.md"
license = { text = "GPLv3" }
keywords = ["openstack icinga nagios check"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: System :: Monitoring",
]
[project.urls]
Homepage = "https://github.com/cirrax/openstack-nagios-plugins"
[project.scripts]
check_ceilometer_statistics = "openstacknagios.ceilometer.statistics:main"
check_cinder_services = "openstacknagios.cinder.services:main"
check_glance_images = "openstacknagios.glance.images:main"
check_gnocchi_measures = "openstacknagios.gnocchi.measures:main"
check_gnocchi_status = "openstacknagios.gnocchi.status:main"
check_keystone_status = "openstacknagios.keystone.status:main"
check_neutron_agents = "openstacknagios.neutron.agents:main"
check_neutron_floatingips = "openstacknagios.neutron.floating_ips:main"
check_neutron_network_ip_availability = "openstacknagios.neutron.network_ip_availability:main"
check_neutron_routers = "openstacknagios.neutron.routers:main"
check_nova_hypervisors = "openstacknagios.nova.hypervisors:main"
check_nova_services = "openstacknagios.nova.services:main"
check_panko_events = "openstacknagios.panko.events:main"
check_rally_results = "openstacknagios.rally.results:main"
[tool.black]
target-version = ['py310']
[tool.pylint.'MESSAGES CONTROL']
disable = [
"R0801", # duplicate code is expected for e.g. CLI arguments in every check
]
[tool.pdm.dev-dependencies]
dev = ["black>=22.8.0", "pylint>=2.13.9"]
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"