2013-10-31 21:14:00 +07:00
|
|
|
[metadata]
|
|
|
|
name = mistral
|
|
|
|
summary = Mistral Project
|
2014-01-20 21:29:32 +04:00
|
|
|
description-file =
|
|
|
|
README.rst
|
|
|
|
license = Apache License, Version 2.0
|
2015-09-16 00:21:28 +05:30
|
|
|
home-page = http://docs.openstack.org/developer/mistral
|
2013-10-31 21:14:00 +07:00
|
|
|
classifiers =
|
|
|
|
Programming Language :: Python
|
|
|
|
Programming Language :: Python :: 2
|
|
|
|
Programming Language :: Python :: 2.7
|
2016-05-24 09:52:15 +01:00
|
|
|
Programming Language :: Python :: 3
|
|
|
|
Programming Language :: Python :: 3.4
|
2013-10-31 21:14:00 +07:00
|
|
|
Environment :: OpenStack
|
|
|
|
Intended Audience :: Information Technology
|
|
|
|
Intended Audience :: System Administrators
|
|
|
|
#License :: OSI Approved :: Apache Software License
|
|
|
|
Operating System :: POSIX :: Linux
|
2015-11-15 22:42:30 +08:00
|
|
|
author = OpenStack Mistral Team
|
2013-10-31 21:14:00 +07:00
|
|
|
author-email = openstack-dev@lists.openstack.org
|
|
|
|
|
|
|
|
[files]
|
|
|
|
packages =
|
|
|
|
mistral
|
2016-03-25 14:23:31 +01:00
|
|
|
mistral_tempest_tests
|
2013-10-31 21:14:00 +07:00
|
|
|
|
2014-05-28 21:28:14 +10:00
|
|
|
[build_sphinx]
|
|
|
|
source-dir = doc/source
|
|
|
|
build-dir = doc/build
|
|
|
|
all_files = 1
|
|
|
|
|
2016-03-17 12:12:01 -05:00
|
|
|
[pbr]
|
|
|
|
autodoc_tree_index_modules = True
|
|
|
|
|
2014-05-28 21:28:14 +10:00
|
|
|
[upload_sphinx]
|
|
|
|
upload-dir = doc/build/html
|
|
|
|
|
2014-04-28 21:57:14 +07:00
|
|
|
[entry_points]
|
|
|
|
console_scripts =
|
|
|
|
mistral-server = mistral.cmd.launch:main
|
2014-07-18 11:15:34 +07:00
|
|
|
mistral-db-manage = mistral.db.sqlalchemy.migration.cli:main
|
2014-04-28 21:57:14 +07:00
|
|
|
|
2015-05-26 12:53:32 +03:00
|
|
|
oslo.config.opts =
|
|
|
|
mistral.config = mistral.config:list_opts
|
|
|
|
|
2016-03-04 06:49:21 -08:00
|
|
|
oslo.config.opts.defaults =
|
2016-03-11 15:29:40 -05:00
|
|
|
mistral.config = mistral.config:set_cors_middleware_defaults
|
2016-03-04 06:49:21 -08:00
|
|
|
|
2015-12-11 19:09:32 +09:00
|
|
|
tempest.test_plugins =
|
|
|
|
mistral_test = mistral_tempest_tests.plugin:MistralTempestPlugin
|
|
|
|
|
2014-07-03 18:24:57 -10:00
|
|
|
mistral.actions =
|
2014-12-11 13:58:19 +06:00
|
|
|
std.async_noop = mistral.actions.std_actions:AsyncNoOpAction
|
2014-12-04 13:40:07 +06:00
|
|
|
std.noop = mistral.actions.std_actions:NoOpAction
|
2014-12-04 14:04:54 +06:00
|
|
|
std.fail = mistral.actions.std_actions:FailAction
|
2014-07-03 18:24:57 -10:00
|
|
|
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
|
2015-10-06 14:23:01 +03:00
|
|
|
std.ssh_proxied = mistral.actions.std_actions:SSHProxiedAction
|
2014-07-03 18:24:57 -10:00
|
|
|
std.email = mistral.actions.std_actions:SendEmailAction
|
2015-01-28 14:18:24 +03:00
|
|
|
std.javascript = mistral.actions.std_actions:JavaScriptAction
|