2bba034d67
Use stevedore to load both transport and storage drivers. It will allow other users to extend Marconi with their own storages / transports more easily. Stevedore also covers most of the cases around managing plugins. Change-Id: Ic417c29cef41bdb72c8c446937905509db5ba8cd
61 lines
1.5 KiB
INI
61 lines
1.5 KiB
INI
[metadata]
|
|
name = marconi
|
|
summary = OpenStack Queuing and Notification Service
|
|
description-file =
|
|
README.rst
|
|
author = OpenStack
|
|
author-email = openstack-dev@lists.openstack.org
|
|
home-page = http://www.openstack.org/
|
|
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 :: 2.6
|
|
|
|
[files]
|
|
packages =
|
|
marconi
|
|
|
|
[global]
|
|
setup-hooks =
|
|
pbr.hooks.setup_hook
|
|
|
|
[entry_points]
|
|
console_scripts =
|
|
marconi-gc = marconi.cmd.gc:run
|
|
marconi-server = marconi.cmd.server:run
|
|
|
|
marconi.storage =
|
|
sqlite = marconi.storage.sqlite.driver:Driver
|
|
mongodb = marconi.storage.mongodb.driver:Driver
|
|
|
|
marconi.transport =
|
|
wsgi = marconi.transport.wsgi.driver:Driver
|
|
|
|
[nosetests]
|
|
where=marconi/tests
|
|
verbosity=2
|
|
exclude=system/*
|
|
|
|
with-doctest = true
|
|
|
|
cover-package = marconi
|
|
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
|
|
|