592981f487
* This patch moves code related to YAQL and Jinja into their specific modules so that there isn't any module that works with both. It makes it easier to understand how code related to one of these technologies works. * Custome built-in functions for YAQL and Jinja are now in a separate module. It's easier now to see what's related with the expression framework now and what's with integration part, i.e. functions themselves. * Renamed the base module of expressions similar to other packages. * Other style changes. Change-Id: I94f57a6534b9c10e202205dfae4d039296c26407
118 lines
4.3 KiB
INI
118 lines
4.3 KiB
INI
[metadata]
|
|
name = mistral
|
|
summary = Mistral Project
|
|
description-file =
|
|
README.rst
|
|
license = Apache License, Version 2.0
|
|
home-page = https://docs.openstack.org/mistral/latest/
|
|
classifiers =
|
|
Programming Language :: Python
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.6
|
|
Programming Language :: Python :: 3.7
|
|
Environment :: OpenStack
|
|
Intended Audience :: Information Technology
|
|
Intended Audience :: System Administrators
|
|
License :: OSI Approved :: Apache Software License
|
|
Operating System :: POSIX :: Linux
|
|
author = OpenStack
|
|
author-email = openstack-discuss@lists.openstack.org
|
|
|
|
[files]
|
|
packages =
|
|
mistral
|
|
|
|
[entry_points]
|
|
console_scripts =
|
|
mistral-server = mistral.cmd.launch:main
|
|
mistral-db-manage = mistral.db.sqlalchemy.migration.cli:main
|
|
|
|
wsgi_scripts =
|
|
mistral-wsgi-api = mistral.api.app:init_wsgi
|
|
|
|
mistral.rpc.backends =
|
|
oslo_client = mistral.rpc.oslo.oslo_client:OsloRPCClient
|
|
oslo_server = mistral.rpc.oslo.oslo_server:OsloRPCServer
|
|
kombu_client = mistral.rpc.kombu.kombu_client:KombuRPCClient
|
|
kombu_server = mistral.rpc.kombu.kombu_server:KombuRPCServer
|
|
|
|
oslo.config.opts =
|
|
mistral.config = mistral.config:list_opts
|
|
|
|
oslo.config.opts.defaults =
|
|
mistral.config = mistral.config:set_cors_middleware_defaults
|
|
|
|
oslo.policy.policies =
|
|
mistral = mistral.policies:list_rules
|
|
|
|
oslo.policy.enforcer =
|
|
mistral = mistral.api.access_control:get_enforcer
|
|
|
|
mistral.actions =
|
|
std.async_noop = mistral.actions.std_actions:AsyncNoOpAction
|
|
std.noop = mistral.actions.std_actions:NoOpAction
|
|
std.fail = mistral.actions.std_actions:FailAction
|
|
std.echo = mistral.actions.std_actions:EchoAction
|
|
std.http = mistral.actions.std_actions:HTTPAction
|
|
std.mistral_http = mistral.actions.std_actions:MistralHTTPAction
|
|
std.ssh = mistral.actions.std_actions:SSHAction
|
|
std.ssh_proxied = mistral.actions.std_actions:SSHProxiedAction
|
|
std.email = mistral.actions.std_actions:SendEmailAction
|
|
std.javascript = mistral.actions.std_actions:JavaScriptAction
|
|
std.js = mistral.actions.std_actions:JavaScriptAction
|
|
std.sleep = mistral.actions.std_actions:SleepAction
|
|
std.test_dict = mistral.actions.std_actions:TestDictAction
|
|
|
|
mistral.executors =
|
|
local = mistral.executors.default_executor:DefaultExecutor
|
|
remote = mistral.executors.remote_executor:RemoteExecutor
|
|
|
|
mistral.notifiers =
|
|
local = mistral.notifiers.default_notifier:DefaultNotifier
|
|
remote = mistral.notifiers.remote_notifier:RemoteNotifier
|
|
|
|
mistral.notification.publishers =
|
|
webhook = mistral.notifiers.publishers.webhook:WebhookPublisher
|
|
noop = mistral.notifiers.publishers.noop:NoopPublisher
|
|
|
|
mistral.expression.functions =
|
|
# json_pp was deprecated in Queens and will be removed in the S cycle
|
|
json_pp = mistral.expressions.std_functions:json_pp_
|
|
|
|
env = mistral.expressions.std_functions:env_
|
|
execution = mistral.expressions.std_functions:execution_
|
|
executions = mistral.expressions.std_functions:executions_
|
|
global = mistral.expressions.std_functions:global_
|
|
json_parse = mistral.expressions.std_functions:json_parse_
|
|
json_dump = mistral.expressions.std_functions:json_dump_
|
|
task = mistral.expressions.std_functions:task_
|
|
tasks = mistral.expressions.std_functions:tasks_
|
|
uuid = mistral.expressions.std_functions:uuid_
|
|
yaml_parse = mistral.expressions.std_functions:yaml_parse_
|
|
yaml_dump = mistral.expressions.std_functions:yaml_dump_
|
|
|
|
mistral.expression.evaluators =
|
|
yaql = mistral.expressions.yaql_expression:InlineYAQLEvaluator
|
|
jinja = mistral.expressions.jinja_expression:InlineJinjaEvaluator
|
|
|
|
mistral.auth =
|
|
keystone = mistral.auth.keystone:KeystoneAuthHandler
|
|
keycloak-oidc = mistral.auth.keycloak:KeycloakAuthHandler
|
|
|
|
kombu_driver.executors =
|
|
blocking = futurist:SynchronousExecutor
|
|
threading = futurist:ThreadPoolExecutor
|
|
eventlet = futurist:GreenThreadPoolExecutor
|
|
|
|
pygments.lexers =
|
|
mistral = mistral.ext.pygmentplugin:MistralLexer
|
|
|
|
mistral.js.implementation =
|
|
pyv8 = mistral.utils.javascript:PyV8Evaluator
|
|
v8eval = mistral.utils.javascript:V8EvalEvaluator
|
|
py_mini_racer = mistral.utils.javascript:PyMiniRacerEvaluator
|
|
|
|
mistral.schedulers =
|
|
legacy = mistral.services.legacy_scheduler:LegacyScheduler
|
|
default = mistral.scheduler.default_scheduler:DefaultScheduler
|