a21c96ec0e
As per victoria cycle testing runtime and community goal[1] we need to migrate upstream CI/CD to Ubuntu Focal(20.04). Fixing: - bug#1886298 Bump the lower constraints for required deps which added python3.8 support in their later version. Story: #2007865 Task: #40207 Closes-Bug: #1886298 [1] https://governance.openstack.org/tc/goals/selected/victoria/migrate-ci-cd-jobs-to-ubuntu-focal.h> Change-Id: Id6b499239fa8b6480c5f67d460215ab458677c6d
82 lines
2.5 KiB
INI
82 lines
2.5 KiB
INI
[metadata]
|
|
name = oslo.messaging
|
|
author = OpenStack
|
|
author-email = openstack-discuss@lists.openstack.org
|
|
summary = Oslo Messaging API
|
|
description-file =
|
|
README.rst
|
|
home-page = https://docs.openstack.org/oslo.messaging/latest/
|
|
python-requires = >=3.6
|
|
classifier =
|
|
Environment :: OpenStack
|
|
Intended Audience :: Developers
|
|
Intended Audience :: Information Technology
|
|
License :: OSI Approved :: Apache Software License
|
|
Operating System :: OS Independent
|
|
Programming Language :: Python
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.6
|
|
Programming Language :: Python :: 3.7
|
|
Programming Language :: Python :: 3.8
|
|
Programming Language :: Python :: 3 :: Only
|
|
Programming Language :: Python :: Implementation :: CPython
|
|
|
|
[extras]
|
|
# package dependencies for optional (non-rabbitmq) messaging drivers.
|
|
# projects can test-depend on oslo.messaging[<drivers>]
|
|
# e.g.: oslo.messaging[kafka,amqp1]
|
|
amqp1 =
|
|
pyngus>=2.2.0 # Apache-2.0
|
|
kafka =
|
|
confluent-kafka>=1.3.0 # Apache-2.0
|
|
|
|
[files]
|
|
packages =
|
|
oslo_messaging
|
|
|
|
[entry_points]
|
|
console_scripts =
|
|
oslo-messaging-send-notification = oslo_messaging.notify.notifier:_send_notification
|
|
|
|
oslo.messaging.drivers =
|
|
rabbit = oslo_messaging._drivers.impl_rabbit:RabbitDriver
|
|
amqp = oslo_messaging._drivers.impl_amqp1:ProtonDriver
|
|
|
|
# This driver is supporting for only notification usage
|
|
kafka = oslo_messaging._drivers.impl_kafka:KafkaDriver
|
|
|
|
# To avoid confusion
|
|
kombu = oslo_messaging._drivers.impl_rabbit:RabbitDriver
|
|
|
|
# This is just for internal testing
|
|
fake = oslo_messaging._drivers.impl_fake:FakeDriver
|
|
|
|
oslo.messaging.executors =
|
|
eventlet = futurist:GreenThreadPoolExecutor
|
|
threading = futurist:ThreadPoolExecutor
|
|
|
|
oslo.messaging.notify.drivers =
|
|
messagingv2 = oslo_messaging.notify.messaging:MessagingV2Driver
|
|
messaging = oslo_messaging.notify.messaging:MessagingDriver
|
|
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
|
|
|
|
oslo.config.opts =
|
|
oslo.messaging = oslo_messaging.opts:list_opts
|
|
|
|
[compile_catalog]
|
|
directory = oslo_messaging/locale
|
|
domain = oslo_messaging
|
|
|
|
[update_catalog]
|
|
domain = oslo_messaging
|
|
output_dir = oslo_messaging/locale
|
|
input_file = oslo_messaging/locale/oslo_messaging.pot
|
|
|
|
[extract_messages]
|
|
keywords = _ gettext ngettext l_ lazy_gettext
|
|
mapping_file = babel.cfg
|
|
output_file = oslo_messaging/locale/oslo_messaging.pot
|