2013-06-15 07:49:11 +01:00
|
|
|
[metadata]
|
|
|
|
name = oslo.messaging
|
|
|
|
author = OpenStack
|
|
|
|
author-email = openstack-dev@lists.openstack.org
|
|
|
|
summary = Oslo Messaging API
|
|
|
|
description-file =
|
|
|
|
README.rst
|
2015-09-16 01:43:13 +05:30
|
|
|
home-page = https://wiki.openstack.org/wiki/Oslo#oslo.messaging
|
2013-06-15 07:49:11 +01:00
|
|
|
classifier =
|
|
|
|
Environment :: OpenStack
|
|
|
|
Intended Audience :: Developers
|
|
|
|
Intended Audience :: Information Technology
|
|
|
|
License :: OSI Approved :: Apache Software License
|
|
|
|
Operating System :: OS Independent
|
|
|
|
Programming Language :: Python
|
2016-03-23 13:13:27 -04:00
|
|
|
Programming Language :: Python :: 2
|
2013-06-15 07:49:11 +01:00
|
|
|
Programming Language :: Python :: 2.7
|
2016-03-23 13:13:27 -04:00
|
|
|
Programming Language :: Python :: 3
|
|
|
|
Programming Language :: Python :: 3.4
|
2016-07-12 16:35:36 +08:00
|
|
|
Programming Language :: Python :: 3.5
|
2013-06-15 07:49:11 +01:00
|
|
|
|
|
|
|
[files]
|
|
|
|
packages =
|
2015-01-02 14:24:57 -05:00
|
|
|
oslo_messaging
|
2013-06-15 07:49:11 +01:00
|
|
|
|
|
|
|
[entry_points]
|
2013-08-28 12:24:04 +01:00
|
|
|
console_scripts =
|
2016-03-02 12:41:52 +02:00
|
|
|
oslo-messaging-zmq-proxy = oslo_messaging._cmd.zmq_proxy:main
|
|
|
|
oslo-messaging-zmq-broker = oslo_messaging._cmd.zmq_proxy:main
|
2016-07-01 17:06:09 +02:00
|
|
|
oslo-messaging-send-notification = oslo_messaging.notify.notifier:_send_notification
|
2013-08-28 12:24:04 +01:00
|
|
|
|
2013-06-15 07:49:11 +01:00
|
|
|
oslo.messaging.drivers =
|
2015-01-02 14:24:57 -05:00
|
|
|
rabbit = oslo_messaging._drivers.impl_rabbit:RabbitDriver
|
|
|
|
zmq = oslo_messaging._drivers.impl_zmq:ZmqDriver
|
2016-05-09 12:56:02 -04:00
|
|
|
amqp = oslo_messaging._drivers.impl_amqp1:ProtonDriver
|
2013-06-15 07:49:11 +01:00
|
|
|
|
2015-06-05 23:05:29 -07:00
|
|
|
# This driver is supporting for only notification usage
|
|
|
|
kafka = oslo_messaging._drivers.impl_kafka:KafkaDriver
|
|
|
|
|
2013-06-15 07:49:11 +01:00
|
|
|
# To avoid confusion
|
2015-01-02 14:24:57 -05:00
|
|
|
kombu = oslo_messaging._drivers.impl_rabbit:RabbitDriver
|
2013-06-15 07:49:11 +01:00
|
|
|
|
|
|
|
# This is just for internal testing
|
2015-01-02 14:24:57 -05:00
|
|
|
fake = oslo_messaging._drivers.impl_fake:FakeDriver
|
2015-12-09 14:09:13 +02:00
|
|
|
pika = oslo_messaging._drivers.impl_pika:PikaDriver
|
2013-06-15 07:49:11 +01:00
|
|
|
|
|
|
|
oslo.messaging.executors =
|
2016-02-20 11:31:15 -05:00
|
|
|
blocking = futurist:SynchronousExecutor
|
|
|
|
eventlet = futurist:GreenThreadPoolExecutor
|
|
|
|
threading = futurist:ThreadPoolExecutor
|
2013-06-15 07:49:11 +01:00
|
|
|
|
2013-06-24 07:14:32 +01:00
|
|
|
oslo.messaging.notify.drivers =
|
2015-09-24 11:20:35 -04:00
|
|
|
messagingv2 = oslo_messaging.notify.messaging:MessagingV2Driver
|
|
|
|
messaging = oslo_messaging.notify.messaging:MessagingDriver
|
2015-01-02 14:24:57 -05:00
|
|
|
log = oslo_messaging.notify._impl_log:LogDriver
|
|
|
|
test = oslo_messaging.notify._impl_test:TestDriver
|
|
|
|
noop = oslo_messaging.notify._impl_noop:NoOpDriver
|
|
|
|
routing = oslo_messaging.notify._impl_routing:RoutingDriver
|
2013-06-15 07:49:11 +01:00
|
|
|
|
2016-04-28 00:02:34 -05:00
|
|
|
oslo.messaging.pika.connection_factory =
|
|
|
|
# Creates new connection for each create_connection call. Old-style behaviour
|
|
|
|
# Uses a much more connections then single and read_write factories but still avalable as
|
|
|
|
# an option
|
|
|
|
new = oslo_messaging._drivers.pika_driver.pika_connection_factory:PikaConnectionFactory
|
|
|
|
|
|
|
|
# Creates only one connection for transport and return it for each create connection call
|
|
|
|
# it is default, but you can not use it with synchronous executor
|
|
|
|
single = oslo_messaging._drivers.pika_driver.pika_connection_factory:SinglePikaConnectionFactory
|
|
|
|
|
|
|
|
# Create two connections - one for listening and another one for sending and return them
|
|
|
|
# for each create connection call depending on connection purpose. Creates one more connection
|
|
|
|
# but you can use it with synchronous executor
|
|
|
|
read_write = oslo_messaging._drivers.pika_driver.pika_connection_factory:ReadWritePikaConnectionFactory
|
|
|
|
|
2015-03-04 22:14:05 -08:00
|
|
|
oslo.messaging.zmq.matchmaker =
|
|
|
|
# Matchmakers for ZeroMQ
|
2016-08-08 15:27:00 +03:00
|
|
|
dummy = oslo_messaging._drivers.zmq_driver.matchmaker.zmq_matchmaker_base:MatchmakerDummy
|
|
|
|
redis = oslo_messaging._drivers.zmq_driver.matchmaker.zmq_matchmaker_redis:MatchmakerRedis
|
2015-03-04 22:14:05 -08:00
|
|
|
|
2014-01-10 17:43:02 +00:00
|
|
|
oslo.config.opts =
|
2015-01-02 14:24:57 -05:00
|
|
|
oslo.messaging = oslo_messaging.opts:list_opts
|
2014-01-10 17:43:02 +00:00
|
|
|
|
2013-06-15 07:49:11 +01:00
|
|
|
[build_sphinx]
|
|
|
|
source-dir = doc/source
|
|
|
|
build-dir = doc/build
|
|
|
|
all_files = 1
|
|
|
|
|
|
|
|
[upload_sphinx]
|
|
|
|
upload-dir = doc/build/html
|
2014-06-05 22:48:44 +02:00
|
|
|
|
|
|
|
[compile_catalog]
|
2016-01-29 11:34:55 +01:00
|
|
|
directory = oslo_messaging/locale
|
|
|
|
domain = oslo_messaging
|
2014-06-05 22:48:44 +02:00
|
|
|
|
|
|
|
[update_catalog]
|
2016-01-29 11:34:55 +01:00
|
|
|
domain = oslo_messaging
|
|
|
|
output_dir = oslo_messaging/locale
|
|
|
|
input_file = oslo_messaging/locale/oslo_messaging.pot
|
2014-06-05 22:48:44 +02:00
|
|
|
|
|
|
|
[extract_messages]
|
|
|
|
keywords = _ gettext ngettext l_ lazy_gettext
|
|
|
|
mapping_file = babel.cfg
|
2016-01-29 11:34:55 +01:00
|
|
|
output_file = oslo_messaging/locale/oslo_messaging.pot
|
2014-12-04 16:13:17 -05:00
|
|
|
|
|
|
|
[pbr]
|
|
|
|
warnerrors = true
|