2013-12-16 15:38:02 -08:00
|
|
|
[metadata]
|
2014-03-19 16:19:52 -07:00
|
|
|
name = ironic-python-agent
|
2021-05-04 17:10:42 +08:00
|
|
|
description_file =
|
2018-11-27 15:01:06 -08:00
|
|
|
README.rst
|
2014-07-01 16:09:46 -07:00
|
|
|
author = OpenStack
|
2021-05-04 17:10:42 +08:00
|
|
|
author_email = openstack-discuss@lists.openstack.org
|
|
|
|
home_page = https://docs.openstack.org/ironic-python-agent/
|
2014-03-19 16:19:52 -07:00
|
|
|
summary = Ironic Python Agent Ramdisk
|
2013-12-16 15:38:02 -08:00
|
|
|
license = Apache-2
|
2024-10-24 18:15:08 +09:00
|
|
|
python_requires = >=3.9
|
2013-12-16 15:38:02 -08:00
|
|
|
classifier =
|
2019-06-24 14:52:33 -04:00
|
|
|
Environment :: OpenStack
|
|
|
|
Intended Audience :: System Administrators
|
|
|
|
Intended Audience :: Information Technology
|
|
|
|
License :: OSI Approved :: Apache Software License
|
|
|
|
Operating System :: OS Independent
|
|
|
|
Programming Language :: Python
|
2020-04-05 08:22:11 +02:00
|
|
|
Programming Language :: Python :: Implementation :: CPython
|
|
|
|
Programming Language :: Python :: 3 :: Only
|
2019-06-24 14:52:33 -04:00
|
|
|
Programming Language :: Python :: 3
|
2021-11-24 20:03:42 -06:00
|
|
|
Programming Language :: Python :: 3.9
|
2023-07-31 15:26:15 +08:00
|
|
|
Programming Language :: Python :: 3.10
|
2024-01-15 14:17:44 +08:00
|
|
|
Programming Language :: Python :: 3.11
|
2024-10-24 18:15:08 +09:00
|
|
|
Programming Language :: Python :: 3.12
|
2020-04-05 08:22:11 +02:00
|
|
|
|
2013-12-16 15:38:02 -08:00
|
|
|
[files]
|
|
|
|
packages =
|
2014-03-19 16:19:52 -07:00
|
|
|
ironic_python_agent
|
2013-12-16 15:38:02 -08:00
|
|
|
|
|
|
|
[entry_points]
|
2016-11-17 14:25:23 +02:00
|
|
|
oslo.config.opts =
|
|
|
|
ironic-python-agent = ironic_python_agent.config:list_opts
|
|
|
|
|
2013-12-16 15:38:02 -08:00
|
|
|
console_scripts =
|
2014-03-19 16:19:52 -07:00
|
|
|
ironic-python-agent = ironic_python_agent.cmd.agent:run
|
2019-06-18 18:26:13 -07:00
|
|
|
ironic-collect-introspection-data = ironic_python_agent.cmd.inspect:run
|
2014-01-14 21:29:04 -08:00
|
|
|
|
2014-03-25 18:00:10 +04:00
|
|
|
ironic_python_agent.extensions =
|
2014-04-11 16:46:36 -07:00
|
|
|
standby = ironic_python_agent.extensions.standby:StandbyExtension
|
2015-03-03 17:46:04 -08:00
|
|
|
clean = ironic_python_agent.extensions.clean:CleanExtension
|
2019-12-12 17:13:08 +00:00
|
|
|
deploy = ironic_python_agent.extensions.deploy:DeployExtension
|
2014-04-11 16:46:36 -07:00
|
|
|
flow = ironic_python_agent.extensions.flow:FlowExtension
|
2015-02-19 13:42:39 +00:00
|
|
|
image = ironic_python_agent.extensions.image:ImageExtension
|
2016-05-30 17:39:13 +01:00
|
|
|
log = ironic_python_agent.extensions.log:LogExtension
|
2017-01-18 16:48:01 +00:00
|
|
|
rescue = ironic_python_agent.extensions.rescue:RescueExtension
|
2019-11-13 17:22:20 +08:00
|
|
|
poll = ironic_python_agent.extensions.poll:PollExtension
|
2023-08-08 18:17:20 -07:00
|
|
|
service = ironic_python_agent.extensions.service:ServiceExtension
|
2024-11-06 13:17:37 +01:00
|
|
|
system = ironic_python_agent.extensions.system:SystemExtension
|
2014-01-21 17:15:12 -08:00
|
|
|
|
2014-03-19 16:19:52 -07:00
|
|
|
ironic_python_agent.hardware_managers =
|
|
|
|
generic = ironic_python_agent.hardware:GenericHardwareManager
|
2016-11-17 02:11:04 +02:00
|
|
|
mlnx = ironic_python_agent.hardware_managers.mlnx:MellanoxDeviceHardwareManager
|
2016-11-23 17:14:15 +01:00
|
|
|
cna = ironic_python_agent.hardware_managers.cna:IntelCnaHardwareManager
|
2014-03-11 12:44:14 -07:00
|
|
|
|
2015-07-24 17:23:33 +02:00
|
|
|
ironic_python_agent.inspector.collectors =
|
|
|
|
default = ironic_python_agent.inspector:collect_default
|
2015-09-18 12:31:40 +02:00
|
|
|
logs = ironic_python_agent.inspector:collect_logs
|
|
|
|
extra-hardware = ironic_python_agent.inspector:collect_extra_hardware
|
2016-06-06 15:16:11 +02:00
|
|
|
pci-devices = ironic_python_agent.inspector:collect_pci_devices_info
|
2017-02-09 07:04:33 -05:00
|
|
|
numa-topology = ironic_python_agent.numa_inspector:collect_numa_topology_info
|
2017-02-17 11:24:37 -08:00
|
|
|
dmi-decode = ironic_python_agent.dmi_inspector:collect_dmidecode_info
|
2023-04-25 12:04:37 +02:00
|
|
|
lldp = ironic_python_agent.inspector:collect_lldp
|
2023-12-06 13:50:45 +01:00
|
|
|
usb-devices = ironic_python_agent.inspector:collect_usb_devices
|
2015-07-24 17:23:33 +02:00
|
|
|
|
2021-12-06 15:23:21 +01:00
|
|
|
[extras]
|
|
|
|
burnin-network-kazoo =
|
|
|
|
kazoo>=2.8.0 # Apache-2.0
|
2023-12-28 10:41:30 -08:00
|
|
|
|
|
|
|
[codespell]
|
|
|
|
quiet-level = 4
|
|
|
|
# Words to ignore:
|
|
|
|
# cna: Intel CNA card
|
2024-05-23 15:49:48 -07:00
|
|
|
# assertin: valid method in testing
|
|
|
|
# burnin: name of our burn in methods
|
|
|
|
ignore-words-list = cna,assertin,burnin
|
|
|
|
skip = ./releasenotes/build,./venv,./doc/build
|