-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsetup.cfg
More file actions
132 lines (113 loc) · 6.54 KB
/
setup.cfg
File metadata and controls
132 lines (113 loc) · 6.54 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
[metadata]
name = python-mistralclient
summary = Mistral Client Library
description_file = README.rst
license = Apache Software License
python_requires = >=3.10
classifiers =
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
Programming Language :: Python :: 3.13
Environment :: OpenStack
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
author = OpenStack
author_email = [email protected]
home_page = https://docs.openstack.org/python-mistralclient/latest/
[files]
packages =
mistralclient
[entry_points]
console_scripts =
mistral = mistralclient.shell:main
openstack.cli.extension =
workflow_engine = mistralclient.osc.plugin
openstack.workflow_engine.v2 =
workbook_list = mistralclient.commands.v2.workbooks:List
workbook_show = mistralclient.commands.v2.workbooks:Get
workbook_create = mistralclient.commands.v2.workbooks:Create
workbook_delete = mistralclient.commands.v2.workbooks:Delete
workbook_update = mistralclient.commands.v2.workbooks:Update
workbook_definition_show = mistralclient.commands.v2.workbooks:GetDefinition
workbook_validate = mistralclient.commands.v2.workbooks:Validate
workflow_list = mistralclient.commands.v2.workflows:List
workflow_show = mistralclient.commands.v2.workflows:Get
workflow_create = mistralclient.commands.v2.workflows:Create
workflow_delete = mistralclient.commands.v2.workflows:Delete
workflow_update = mistralclient.commands.v2.workflows:Update
workflow_definition_show = mistralclient.commands.v2.workflows:GetDefinition
workflow_validate = mistralclient.commands.v2.workflows:Validate
workflow_env_create = mistralclient.commands.v2.environments:Create
workflow_env_delete = mistralclient.commands.v2.environments:Delete
workflow_env_update = mistralclient.commands.v2.environments:Update
workflow_env_list = mistralclient.commands.v2.environments:List
workflow_env_show = mistralclient.commands.v2.environments:Get
action_execution_run = mistralclient.commands.v2.action_executions:Create
action_execution_list = mistralclient.commands.v2.action_executions:List
action_execution_show = mistralclient.commands.v2.action_executions:Get
action_execution_input_show = mistralclient.commands.v2.action_executions:GetInput
action_execution_output_show = mistralclient.commands.v2.action_executions:GetOutput
action_execution_update = mistralclient.commands.v2.action_executions:Update
action_execution_delete = mistralclient.commands.v2.action_executions:Delete
workflow_execution_create = mistralclient.commands.v2.executions:Create
workflow_execution_delete = mistralclient.commands.v2.executions:Delete
workflow_execution_update = mistralclient.commands.v2.executions:Update
workflow_execution_list = mistralclient.commands.v2.executions:List
workflow_execution_show = mistralclient.commands.v2.executions:Get
workflow_execution_input_show = mistralclient.commands.v2.executions:GetInput
workflow_execution_output_show = mistralclient.commands.v2.executions:GetOutput
workflow_execution_report_show = mistralclient.commands.v2.executions:GetReport
workflow_execution_published_show = mistralclient.commands.v2.executions:GetPublished
task_execution_list = mistralclient.commands.v2.tasks:List
task_execution_show = mistralclient.commands.v2.tasks:Get
task_execution_published_show = mistralclient.commands.v2.tasks:GetPublished
task_execution_result_show = mistralclient.commands.v2.tasks:GetResult
task_execution_rerun = mistralclient.commands.v2.tasks:Rerun
action_definition_list = mistralclient.commands.v2.actions:List
action_definition_show = mistralclient.commands.v2.actions:Get
action_definition_create = mistralclient.commands.v2.actions:Create
action_definition_delete = mistralclient.commands.v2.actions:Delete
action_definition_update = mistralclient.commands.v2.actions:Update
action_definition_definition_show = mistralclient.commands.v2.actions:GetDefinition
cron_trigger_list = mistralclient.commands.v2.cron_triggers:List
cron_trigger_show = mistralclient.commands.v2.cron_triggers:Get
cron_trigger_create = mistralclient.commands.v2.cron_triggers:Create
cron_trigger_delete = mistralclient.commands.v2.cron_triggers:Delete
event_trigger_list = mistralclient.commands.v2.event_triggers:List
event_trigger_show = mistralclient.commands.v2.event_triggers:Get
event_trigger_create = mistralclient.commands.v2.event_triggers:Create
event_trigger_delete = mistralclient.commands.v2.event_triggers:Delete
resource_member_list = mistralclient.commands.v2.members:List
resource_member_show = mistralclient.commands.v2.members:Get
resource_member_create = mistralclient.commands.v2.members:Create
resource_member_delete = mistralclient.commands.v2.members:Delete
resource_member_update = mistralclient.commands.v2.members:Update
code_source_list = mistralclient.commands.v2.code_sources:List
code_source_show = mistralclient.commands.v2.code_sources:Get
code_source_create = mistralclient.commands.v2.code_sources:Create
code_source_delete = mistralclient.commands.v2.code_sources:Delete
code_source_update = mistralclient.commands.v2.code_sources:Update
code_source_content_show = mistralclient.commands.v2.code_sources:GetContent
dynamic_action_list = mistralclient.commands.v2.dynamic_actions:List
dynamic_action_show = mistralclient.commands.v2.dynamic_actions:Get
dynamic_action_create = mistralclient.commands.v2.dynamic_actions:Create
dynamic_action_delete = mistralclient.commands.v2.dynamic_actions:Delete
dynamic_action_update = mistralclient.commands.v2.dynamic_actions:Update
mistralclient.auth =
# Standard Keystone authentication.
keystone = mistralclient.auth.keystone:KeystoneAuthHandler
# Authentication using OpenID Connect protocol but specific to KeyCloak
# server regarding multi-tenancy support. KeyCloak has a notion of realm
# used as an analog of Keystone project/tenant.
keycloak-oidc = mistralclient.auth.keycloak:KeycloakAuthHandler
[nosetests]
cover-package = mistralclient
[extract_messages]
keywords = _ gettext ngettext l_ lazy_gettext