Zaqarclient v2 currently has missing features that involve the management of subscriptions, but in order to these to work it is necessary to add other features such as 'queues', 'messages', 'claims', 'pools' and 'flavors'. I added 'queues' and 'messages' as a priorital step before start working with the other features and with subscriptions as well. Change-Id: Iea082cbf9e1d0e4a745bc10e41e1206af6132fad
79 lines
2.3 KiB
INI
79 lines
2.3 KiB
INI
[metadata]
|
|
name = python-zaqarclient
|
|
summary = Client Library for OpenStack Zaqar Messaging API
|
|
description-file =
|
|
README.rst
|
|
author = OpenStack Foundation
|
|
author-email = openstack-admins@lists.openstack.org
|
|
home-page = http://www.openstack.org/
|
|
classifier =
|
|
Development Status :: 4 - Beta
|
|
Environment :: Console
|
|
Environment :: OpenStack
|
|
Intended Audience :: Information Technology
|
|
Intended Audience :: Developers
|
|
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.6
|
|
Programming Language :: Python :: 2.7
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.2
|
|
Programming Language :: Python :: 3.3
|
|
Programming Language :: Python :: Implementation :: PyPy
|
|
|
|
[global]
|
|
setup-hooks =
|
|
pbr.hooks.setup_hook
|
|
|
|
[files]
|
|
packages =
|
|
zaqarclient
|
|
|
|
[entry_points]
|
|
zaqarclient.transport =
|
|
http.v1 = zaqarclient.transport.http:HttpTransport
|
|
https.v1 = zaqarclient.transport.http:HttpTransport
|
|
|
|
http.v1.1 = zaqarclient.transport.http:HttpTransport
|
|
https.v1.1 = zaqarclient.transport.http:HttpTransport
|
|
|
|
http.v2 = zaqarclient.transport.http:HttpTransport
|
|
https.v2 = zaqarclient.transport.http:HttpTransport
|
|
|
|
zaqarclient.api =
|
|
queues.v1 = zaqarclient.queues.v1.api:V1
|
|
queues.v1.1 = zaqarclient.queues.v1.api:V1_1
|
|
queues.v2 = zaqarclient.queues.v2.api:V2
|
|
|
|
openstack.messaging.v1 =
|
|
queue_list = zaqarclient.queues.v1.cli:ListQueues
|
|
queue_create = zaqarclient.queues.v1.cli:CreateQueue
|
|
queue_delete = zaqarclient.queues.v1.cli:DeleteQueue
|
|
queue_exists = zaqarclient.queues.v1.cli:CheckQueueExistence
|
|
queue_set_metadata = zaqarclient.queues.v1.cli:SetQueueMetadata
|
|
queue_get_metadata = zaqarclient.queues.v1.cli:GetQueueMetadata
|
|
queue_stats = zaqarclient.queues.v1.cli:GetQueueStats
|
|
pool_create = zaqarclient.queues.v1.cli:CreatePool
|
|
flavor_delete = zaqarclient.queues.v1.cli:DeleteFlavor
|
|
|
|
openstack.cli.extension =
|
|
messaging = zaqarclient.queues.cli
|
|
|
|
[nosetests]
|
|
where=tests
|
|
verbosity=2
|
|
|
|
[build_sphinx]
|
|
source-dir = doc/source
|
|
build-dir = doc/build
|
|
all_files = 1
|
|
|
|
[upload_sphinx]
|
|
upload-dir = doc/build/html
|
|
|
|
[wheel]
|
|
universal = 1
|