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
|
[metadata]
name = python-ironic-inspector-client
summary = Python client for Ironic Inspector
description_file = README.rst
license = Apache-2.0
author = OpenStack
author_email = openstack-discuss@lists.openstack.org
home_page = https://docs.openstack.org/python-ironic-inspector-client/latest/
python_requires = >=3.10
classifier =
Environment :: Console
Environment :: OpenStack
Intended Audience :: Developers
Intended Audience :: Information Technology
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
[files]
packages =
ironic_inspector_client
[entry_points]
openstack.cli.extension =
baremetal-introspection = ironic_inspector_client.shell
openstack.baremetal_introspection.v1 =
baremetal_introspection_start = ironic_inspector_client.shell:StartCommand
baremetal_introspection_status = ironic_inspector_client.shell:StatusCommand
baremetal_introspection_list = ironic_inspector_client.shell:StatusListCommand
baremetal_introspection_reprocess = ironic_inspector_client.shell:ReprocessCommand
baremetal_introspection_abort = ironic_inspector_client.shell:AbortCommand
baremetal_introspection_data_save = ironic_inspector_client.shell:DataSaveCommand
baremetal_introspection_rule_import = ironic_inspector_client.shell:RuleImportCommand
baremetal_introspection_rule_list = ironic_inspector_client.shell:RuleListCommand
baremetal_introspection_rule_show = ironic_inspector_client.shell:RuleShowCommand
baremetal_introspection_rule_delete = ironic_inspector_client.shell:RuleDeleteCommand
baremetal_introspection_rule_purge = ironic_inspector_client.shell:RulePurgeCommand
baremetal_introspection_interface_list = ironic_inspector_client.shell:InterfaceListCommand
baremetal_introspection_interface_show = ironic_inspector_client.shell:InterfaceShowCommand
[extras]
cli =
python-openstackclient>=3.12.0 # Apache-2.0
[codespell]
quiet-level = 4
# Words to ignore:
ignore-words-list = example
|