3f7cc0a460
This change prepares the zaqar project to start implementing policies in code. Subsequent patches will register more zaqar policies in code and remove the corresponding entry from the policy file maintained in source. This is part of a community effort to provide better user experience for those having to maintain RBAC policy. More information on this effort can be found below: https://governance.openstack.org/tc/goals/queens/policy-in-code.html bp policy-and-docs-in-code Change-Id: I5d804b589df215fddc18257fc9f05ba2e0d708bd
127 lines
4.1 KiB
INI
127 lines
4.1 KiB
INI
[metadata]
|
|
name = zaqar
|
|
summary = OpenStack Queuing and Notification Service
|
|
description-file =
|
|
README.rst
|
|
author = OpenStack
|
|
author-email = openstack-dev@lists.openstack.org
|
|
home-page = https://docs.openstack.org/zaqar/latest/
|
|
classifier =
|
|
Environment :: OpenStack
|
|
Intended Audience :: Information Technology
|
|
Intended Audience :: System Administrators
|
|
License :: OSI Approved :: Apache Software License
|
|
Operating System :: POSIX :: Linux
|
|
Programming Language :: Python
|
|
Programming Language :: Python :: 2
|
|
Programming Language :: Python :: 2.7
|
|
Programming Language :: Python :: 3.5
|
|
|
|
[files]
|
|
packages =
|
|
zaqar
|
|
|
|
[build_sphinx]
|
|
all_files = 1
|
|
build-dir = doc/build
|
|
source-dir = doc/source
|
|
warning-is-error = 1
|
|
|
|
[entry_points]
|
|
console_scripts =
|
|
zaqar-bench = zaqar.bench.conductor:main
|
|
zaqar-server = zaqar.cmd.server:run
|
|
zaqar-gc = zaqar.cmd.gc:run
|
|
zaqar-sql-db-manage = zaqar.storage.sqlalchemy.migration.cli:main
|
|
|
|
zaqar.data.storage =
|
|
mongodb = zaqar.storage.mongodb.driver:DataDriver
|
|
mongodb.fifo = zaqar.storage.mongodb.driver:FIFODataDriver
|
|
redis = zaqar.storage.redis.driver:DataDriver
|
|
swift = zaqar.storage.swift.driver:DataDriver
|
|
faulty = zaqar.tests.faulty_storage:DataDriver
|
|
|
|
zaqar.control.storage =
|
|
sqlalchemy = zaqar.storage.sqlalchemy.driver:ControlDriver
|
|
mongodb = zaqar.storage.mongodb.driver:ControlDriver
|
|
redis = zaqar.storage.redis.driver:ControlDriver
|
|
faulty = zaqar.tests.faulty_storage:ControlDriver
|
|
|
|
zaqar.transport =
|
|
wsgi = zaqar.transport.wsgi.driver:Driver
|
|
websocket = zaqar.transport.websocket.driver:Driver
|
|
|
|
oslo.config.opts =
|
|
zaqar.common.auth = zaqar.common.auth:_config_options
|
|
zaqar.common.configs = zaqar.common.configs:_config_options
|
|
zaqar.storage.pipeline = zaqar.storage.pipeline:_config_options
|
|
zaqar.storage.pooling = zaqar.storage.pooling:_config_options
|
|
zaqar.storage.mongodb = zaqar.storage.mongodb.options:_config_options
|
|
zaqar.storage.redis = zaqar.storage.redis.options:_config_options
|
|
zaqar.storage.sqlalchemy = zaqar.storage.sqlalchemy.options:_config_options
|
|
zaqar.storage.swift = zaqar.storage.swift.options:_config_options
|
|
zaqar.transport.wsgi = zaqar.transport.wsgi.driver:_config_options
|
|
zaqar.transport.websocket = zaqar.transport.websocket.driver:_config_options
|
|
zaqar.transport.base = zaqar.transport.base:_config_options
|
|
zaqar.transport.validation = zaqar.transport.validation:_config_options
|
|
|
|
zaqar.storage.stages =
|
|
zaqar.notification.notifier = zaqar.notification.notifier:NotifierDriver
|
|
|
|
zaqar.storage.mongodb.driver.queue.stages =
|
|
message_queue_handler = zaqar.storage.mongodb.messages:MessageQueueHandler
|
|
|
|
zaqar.storage.redis.driver.queue.stages =
|
|
message_queue_handler = zaqar.storage.redis.messages:MessageQueueHandler
|
|
|
|
zaqar.storage.swift.driver.queue.stages =
|
|
message_queue_handler = zaqar.storage.swift.messages:MessageQueueHandler
|
|
|
|
zaqar.notification.tasks =
|
|
http = zaqar.notification.tasks.webhook:WebhookTask
|
|
https = zaqar.notification.tasks.webhook:WebhookTask
|
|
mailto = zaqar.notification.tasks.mailto:MailtoTask
|
|
trust+http = zaqar.notification.tasks.trust:TrustTask
|
|
trust+https = zaqar.notification.tasks.trust:TrustTask
|
|
|
|
tempest.test_plugins =
|
|
zaqar_tests = zaqar.tests.tempest_plugin.plugin:ZaqarTempestPlugin
|
|
|
|
oslo.policy.policies =
|
|
zaqar = zaqar.common.policies:list_rules
|
|
|
|
[nosetests]
|
|
where=zaqar/tests
|
|
verbosity=2
|
|
|
|
with-doctest = true
|
|
|
|
cover-package = zaqar
|
|
cover-html = true
|
|
cover-erase = true
|
|
cover-inclusive = true
|
|
|
|
; Disabled: Causes a bug in testtools to manifest.
|
|
; Trigger: self.assertX(condition), where condition == False.
|
|
;
|
|
; In "testtools/testresult/real.py" the traceback is set to
|
|
; None in _details_to_exc_info(), but the inspect_traceback()
|
|
; method in nose/inspector.py requires a traceback-like object.
|
|
;
|
|
; detailed-errors = 1
|
|
|
|
|
|
[compile_catalog]
|
|
directory = zaqar/locale
|
|
domain = zaqar
|
|
|
|
[update_catalog]
|
|
domain = zaqar
|
|
output_dir = zaqar/locale
|
|
input_file = zaqar/locale/zaqar.pot
|
|
|
|
[extract_messages]
|
|
keywords = _ gettext ngettext l_ lazy_gettext
|
|
mapping_file = babel.cfg
|
|
output_file = zaqar/locale/zaqar.pot
|