[Python-modules-commits] [kombu] 02/09: Import kombu_3.0.35+dfsg.orig.tar.gz
Christopher Stuart Hoskin
mans0954 at moszumanska.debian.org
Sun Feb 19 11:37:05 UTC 2017
This is an automated email from the git hooks/post-receive script.
mans0954 pushed a commit to branch master
in repository kombu.
commit 6d726106cf88bed0ac617f93e17fd03861916edd
Author: Christopher Hoskin <mans0954 at debian.org>
Date: Sun Feb 19 11:08:53 2017 +0000
Import kombu_3.0.35+dfsg.orig.tar.gz
---
docs/images/kombu.jpg | Bin 115763 -> 115481 bytes
docs/images/kombusmall.jpg | Bin 28752 -> 24746 bytes
kombu.egg-info/PKG-INFO | 358 ------------------------------------
kombu.egg-info/SOURCES.txt | 300 ------------------------------
kombu.egg-info/dependency_links.txt | 1 -
kombu.egg-info/not-zip-safe | 1 -
kombu.egg-info/requires.txt | 49 -----
kombu.egg-info/top_level.txt | 1 -
8 files changed, 710 deletions(-)
diff --git a/docs/images/kombu.jpg b/docs/images/kombu.jpg
index 78b08e7..9eb27d7 100644
Binary files a/docs/images/kombu.jpg and b/docs/images/kombu.jpg differ
diff --git a/docs/images/kombusmall.jpg b/docs/images/kombusmall.jpg
index fd3b8f8..a6753b4 100644
Binary files a/docs/images/kombusmall.jpg and b/docs/images/kombusmall.jpg differ
diff --git a/kombu.egg-info/PKG-INFO b/kombu.egg-info/PKG-INFO
deleted file mode 100644
index f049842..0000000
--- a/kombu.egg-info/PKG-INFO
+++ /dev/null
@@ -1,358 +0,0 @@
-Metadata-Version: 1.1
-Name: kombu
-Version: 3.0.35
-Summary: Messaging library for Python
-Home-page: http://kombu.readthedocs.org
-Author: Ask Solem
-Author-email: ask at celeryproject.org
-License: UNKNOWN
-Description: .. _kombu-index:
-
- ========================================
- kombu - Messaging library for Python
- ========================================
-
- :Version: 3.0.35
-
- `Kombu` is a messaging library for Python.
-
- The aim of `Kombu` is to make messaging in Python as easy as possible by
- providing an idiomatic high-level interface for the AMQ protocol, and also
- provide proven and tested solutions to common messaging problems.
-
- `AMQP`_ is the Advanced Message Queuing Protocol, an open standard protocol
- for message orientation, queuing, routing, reliability and security,
- for which the `RabbitMQ`_ messaging server is the most popular implementation.
-
- Features
- ========
-
- * Allows application authors to support several message server
- solutions by using pluggable transports.
-
- * AMQP transport using the `py-amqp`_, `librabbitmq`_, or `qpid-python`_ client libraries.
-
- * High performance AMQP transport written in C - when using `librabbitmq`_
-
- This is automatically enabled if librabbitmq is installed::
-
- $ pip install librabbitmq
-
- * Virtual transports makes it really easy to add support for non-AMQP
- transports. There is already built-in support for `Redis`_,
- `Beanstalk`_, `Amazon SQS`_, `CouchDB`_, `MongoDB`_, `ZeroMQ`_,
- `ZooKeeper`_, `SoftLayer MQ`_ and `Pyro`_.
-
- * You can also use the SQLAlchemy and Django ORM transports to
- use a database as the broker.
-
- * In-memory transport for unit testing.
-
- * Supports automatic encoding, serialization and compression of message
- payloads.
-
- * Consistent exception handling across transports.
-
- * The ability to ensure that an operation is performed by gracefully
- handling connection and channel errors.
-
- * Several annoyances with `amqplib`_ has been fixed, like supporting
- timeouts and the ability to wait for events on more than one channel.
-
- * Projects already using `carrot`_ can easily be ported by using
- a compatibility layer.
-
- For an introduction to AMQP you should read the article `Rabbits and warrens`_,
- and the `Wikipedia article about AMQP`_.
-
- .. _`RabbitMQ`: http://www.rabbitmq.com/
- .. _`AMQP`: http://amqp.org
- .. _`py-amqp`: http://pypi.python.org/pypi/amqp/
- .. _`qpid-python`: http://pypi.python.org/pypi/qpid-python/
- .. _`Redis`: http://code.google.com/p/redis/
- .. _`Amazon SQS`: http://aws.amazon.com/sqs/
- .. _`MongoDB`: http://www.mongodb.org/
- .. _`CouchDB`: http://couchdb.apache.org/
- .. _`ZeroMQ`: http://zeromq.org/
- .. _`Zookeeper`: https://zookeeper.apache.org/
- .. _`Beanstalk`: http://kr.github.com/beanstalkd/
- .. _`Rabbits and warrens`: http://blogs.digitar.com/jjww/2009/01/rabbits-and-warrens/
- .. _`amqplib`: http://barryp.org/software/py-amqplib/
- .. _`Wikipedia article about AMQP`: http://en.wikipedia.org/wiki/AMQP
- .. _`carrot`: http://pypi.python.org/pypi/carrot/
- .. _`librabbitmq`: http://pypi.python.org/pypi/librabbitmq
- .. _`Pyro`: http://pythonhosting.org/Pyro
- .. _`SoftLayer MQ`: http://www.softlayer.com/services/additional/message-queue
-
-
- .. _transport-comparison:
-
- Transport Comparison
- ====================
-
- +---------------+----------+------------+------------+---------------+
- | **Client** | **Type** | **Direct** | **Topic** | **Fanout** |
- +---------------+----------+------------+------------+---------------+
- | *amqp* | Native | Yes | Yes | Yes |
- +---------------+----------+------------+------------+---------------+
- | *qpid* | Native | Yes | Yes | Yes |
- +---------------+----------+------------+------------+---------------+
- | *redis* | Virtual | Yes | Yes | Yes (PUB/SUB) |
- +---------------+----------+------------+------------+---------------+
- | *mongodb* | Virtual | Yes | Yes | Yes |
- +---------------+----------+------------+------------+---------------+
- | *beanstalk* | Virtual | Yes | Yes [#f1]_ | No |
- +---------------+----------+------------+------------+---------------+
- | *SQS* | Virtual | Yes | Yes [#f1]_ | Yes [#f2]_ |
- +---------------+----------+------------+------------+---------------+
- | *couchdb* | Virtual | Yes | Yes [#f1]_ | No |
- +---------------+----------+------------+------------+---------------+
- | *zookeeper* | Virtual | Yes | Yes [#f1]_ | No |
- +---------------+----------+------------+------------+---------------+
- | *in-memory* | Virtual | Yes | Yes [#f1]_ | No |
- +---------------+----------+------------+------------+---------------+
- | *django* | Virtual | Yes | Yes [#f1]_ | No |
- +---------------+----------+------------+------------+---------------+
- | *sqlalchemy* | Virtual | Yes | Yes [#f1]_ | No |
- +---------------+----------+------------+------------+---------------+
- | *SLMQ* | Virtual | Yes | Yes [#f1]_ | No |
- +---------------+----------+------------+------------+---------------+
-
-
- .. [#f1] Declarations only kept in memory, so exchanges/queues
- must be declared by all clients that needs them.
-
- .. [#f2] Fanout supported via storing routing tables in SimpleDB.
- Disabled by default, but can be enabled by using the
- ``supports_fanout`` transport option.
-
-
- Documentation
- -------------
-
- Kombu is using Sphinx, and the latest documentation can be found here:
-
- http://kombu.readthedocs.org/
-
- Quick overview
- --------------
-
- ::
-
- from kombu import Connection, Exchange, Queue
-
- media_exchange = Exchange('media', 'direct', durable=True)
- video_queue = Queue('video', exchange=media_exchange, routing_key='video')
-
- def process_media(body, message):
- print body
- message.ack()
-
- # connections
- with Connection('amqp://guest:guest@localhost//') as conn:
-
- # produce
- producer = conn.Producer(serializer='json')
- producer.publish({'name': '/tmp/lolcat1.avi', 'size': 1301013},
- exchange=media_exchange, routing_key='video',
- declare=[video_queue])
-
- # the declare above, makes sure the video queue is declared
- # so that the messages can be delivered.
- # It's a best practice in Kombu to have both publishers and
- # consumers declare the queue. You can also declare the
- # queue manually using:
- # video_queue(conn).declare()
-
- # consume
- with conn.Consumer(video_queue, callbacks=[process_media]) as consumer:
- # Process messages and handle events on all channels
- while True:
- conn.drain_events()
-
- # Consume from several queues on the same channel:
- video_queue = Queue('video', exchange=media_exchange, key='video')
- image_queue = Queue('image', exchange=media_exchange, key='image')
-
- with connection.Consumer([video_queue, image_queue],
- callbacks=[process_media]) as consumer:
- while True:
- connection.drain_events()
-
-
- Or handle channels manually::
-
- with connection.channel() as channel:
- producer = Producer(channel, ...)
- consumer = Producer(channel)
-
-
- All objects can be used outside of with statements too,
- just remember to close the objects after use::
-
- from kombu import Connection, Consumer, Producer
-
- connection = Connection()
- # ...
- connection.release()
-
- consumer = Consumer(channel_or_connection, ...)
- consumer.register_callback(my_callback)
- consumer.consume()
- # ....
- consumer.cancel()
-
-
- `Exchange` and `Queue` are simply declarations that can be pickled
- and used in configuration files etc.
-
- They also support operations, but to do so they need to be bound
- to a channel.
-
- Binding exchanges and queues to a connection will make it use
- that connections default channel.
-
- ::
-
- >>> exchange = Exchange('tasks', 'direct')
-
- >>> connection = Connection()
- >>> bound_exchange = exchange(connection)
- >>> bound_exchange.delete()
-
- # the original exchange is not affected, and stays unbound.
- >>> exchange.delete()
- raise NotBoundError: Can't call delete on Exchange not bound to
- a channel.
-
- Installation
- ============
-
- You can install `Kombu` either via the Python Package Index (PyPI)
- or from source.
-
- To install using `pip`,::
-
- $ pip install kombu
-
- To install using `easy_install`,::
-
- $ easy_install kombu
-
- If you have downloaded a source tarball you can install it
- by doing the following,::
-
- $ python setup.py build
- # python setup.py install # as root
-
-
- Terminology
- ===========
-
- There are some concepts you should be familiar with before starting:
-
- * Producers
-
- Producers sends messages to an exchange.
-
- * Exchanges
-
- Messages are sent to exchanges. Exchanges are named and can be
- configured to use one of several routing algorithms. The exchange
- routes the messages to consumers by matching the routing key in the
- message with the routing key the consumer provides when binding to
- the exchange.
-
- * Consumers
-
- Consumers declares a queue, binds it to a exchange and receives
- messages from it.
-
- * Queues
-
- Queues receive messages sent to exchanges. The queues are declared
- by consumers.
-
- * Routing keys
-
- Every message has a routing key. The interpretation of the routing
- key depends on the exchange type. There are four default exchange
- types defined by the AMQP standard, and vendors can define custom
- types (so see your vendors manual for details).
-
- These are the default exchange types defined by AMQP/0.8:
-
- * Direct exchange
-
- Matches if the routing key property of the message and
- the `routing_key` attribute of the consumer are identical.
-
- * Fan-out exchange
-
- Always matches, even if the binding does not have a routing
- key.
-
- * Topic exchange
-
- Matches the routing key property of the message by a primitive
- pattern matching scheme. The message routing key then consists
- of words separated by dots (`"."`, like domain names), and
- two special characters are available; star (`"*"`) and hash
- (`"#"`). The star matches any word, and the hash matches
- zero or more words. For example `"*.stock.#"` matches the
- routing keys `"usd.stock"` and `"eur.stock.db"` but not
- `"stock.nasdaq"`.
-
- Getting Help
- ============
-
- Mailing list
- ------------
-
- Join the `carrot-users`_ mailing list.
-
- .. _`carrot-users`: http://groups.google.com/group/carrot-users/
-
- Bug tracker
- ===========
-
- If you have any suggestions, bug reports or annoyances please report them
- to our issue tracker at http://github.com/celery/kombu/issues/
-
- Contributing
- ============
-
- Development of `Kombu` happens at Github: http://github.com/celery/kombu
-
- You are highly encouraged to participate in the development. If you don't
- like Github (for some reason) you're welcome to send regular patches.
-
- License
- =======
-
- This software is licensed under the `New BSD License`. See the `LICENSE`
- file in the top distribution directory for the full license text.
-
- .. image:: https://d2weczhvl823v0.cloudfront.net/celery/kombu/trend.png
- :alt: Bitdeli badge
- :target: https://bitdeli.com/free
-
-Platform: any
-Classifier: Development Status :: 5 - Production/Stable
-Classifier: License :: OSI Approved :: BSD License
-Classifier: Operating System :: OS Independent
-Classifier: Programming Language :: Python
-Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.4
-Classifier: Programming Language :: Python :: 3.3
-Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 2.6
-Classifier: Programming Language :: Python :: 2
-Classifier: Programming Language :: Python :: Implementation :: CPython
-Classifier: Programming Language :: Python :: Implementation :: PyPy
-Classifier: Programming Language :: Python :: Implementation :: Jython
-Classifier: Intended Audience :: Developers
-Classifier: Topic :: Communications
-Classifier: Topic :: System :: Distributed Computing
-Classifier: Topic :: System :: Networking
-Classifier: Topic :: Software Development :: Libraries :: Python Modules
diff --git a/kombu.egg-info/SOURCES.txt b/kombu.egg-info/SOURCES.txt
deleted file mode 100644
index ba68988..0000000
--- a/kombu.egg-info/SOURCES.txt
+++ /dev/null
@@ -1,300 +0,0 @@
-AUTHORS
-Changelog
-FAQ
-INSTALL
-LICENSE
-MANIFEST.in
-README.rst
-THANKS
-TODO
-setup.cfg
-setup.py
-docs/Makefile
-docs/changelog.rst
-docs/conf.py
-docs/faq.rst
-docs/index.rst
-docs/introduction.rst
-docs/.static/.keep
-docs/.templates/sidebarintro.html
-docs/.templates/sidebarlogo.html
-docs/_ext/applyxrefs.py
-docs/_ext/literals_to_xrefs.py
-docs/_theme/celery/theme.conf
-docs/_theme/celery/static/celery.css_t
-docs/images/kombu.jpg
-docs/images/kombusmall.jpg
-docs/reference/index.rst
-docs/reference/kombu.abstract.rst
-docs/reference/kombu.async.debug.rst
-docs/reference/kombu.async.hub.rst
-docs/reference/kombu.async.rst
-docs/reference/kombu.async.semaphore.rst
-docs/reference/kombu.async.timer.rst
-docs/reference/kombu.clocks.rst
-docs/reference/kombu.common.rst
-docs/reference/kombu.compat.rst
-docs/reference/kombu.compression.rst
-docs/reference/kombu.connection.rst
-docs/reference/kombu.exceptions.rst
-docs/reference/kombu.five.rst
-docs/reference/kombu.log.rst
-docs/reference/kombu.message.rst
-docs/reference/kombu.mixins.rst
-docs/reference/kombu.pidbox.rst
-docs/reference/kombu.pools.rst
-docs/reference/kombu.rst
-docs/reference/kombu.serialization.rst
-docs/reference/kombu.simple.rst
-docs/reference/kombu.syn.rst
-docs/reference/kombu.transport.SLMQ.rst
-docs/reference/kombu.transport.SQS.rst
-docs/reference/kombu.transport.amqplib.rst
-docs/reference/kombu.transport.base.rst
-docs/reference/kombu.transport.beanstalk.rst
-docs/reference/kombu.transport.couchdb.rst
-docs/reference/kombu.transport.django.management.commands.clean_kombu_messages.rst
-docs/reference/kombu.transport.django.managers.rst
-docs/reference/kombu.transport.django.models.rst
-docs/reference/kombu.transport.django.rst
-docs/reference/kombu.transport.filesystem.rst
-docs/reference/kombu.transport.librabbitmq.rst
-docs/reference/kombu.transport.memory.rst
-docs/reference/kombu.transport.mongodb.rst
-docs/reference/kombu.transport.pyamqp.rst
-docs/reference/kombu.transport.pyro.rst
-docs/reference/kombu.transport.qpid.rst
-docs/reference/kombu.transport.redis.rst
-docs/reference/kombu.transport.rst
-docs/reference/kombu.transport.sqlalchemy.models.rst
-docs/reference/kombu.transport.sqlalchemy.rst
-docs/reference/kombu.transport.virtual.exchange.rst
-docs/reference/kombu.transport.virtual.rst
-docs/reference/kombu.transport.virtual.scheduling.rst
-docs/reference/kombu.transport.zmq.rst
-docs/reference/kombu.transport.zookeeper.rst
-docs/reference/kombu.utils.amq_manager.rst
-docs/reference/kombu.utils.compat.rst
-docs/reference/kombu.utils.debug.rst
-docs/reference/kombu.utils.encoding.rst
-docs/reference/kombu.utils.eventio.rst
-docs/reference/kombu.utils.functional.rst
-docs/reference/kombu.utils.limits.rst
-docs/reference/kombu.utils.rst
-docs/reference/kombu.utils.text.rst
-docs/reference/kombu.utils.url.rst
-docs/userguide/connections.rst
-docs/userguide/consumers.rst
-docs/userguide/examples.rst
-docs/userguide/index.rst
-docs/userguide/introduction.rst
-docs/userguide/pools.rst
-docs/userguide/producers.rst
-docs/userguide/serialization.rst
-docs/userguide/simple.rst
-examples/complete_receive.py
-examples/complete_send.py
-examples/hello_consumer.py
-examples/hello_publisher.py
-examples/simple_eventlet_receive.py
-examples/simple_eventlet_send.py
-examples/simple_receive.py
-examples/simple_send.py
-examples/experimental/async_consume.py
-examples/simple_task_queue/__init__.py
-examples/simple_task_queue/client.py
-examples/simple_task_queue/queues.py
-examples/simple_task_queue/tasks.py
-examples/simple_task_queue/worker.py
-extra/doc2ghpages
-extra/appveyor/install.ps1
-extra/appveyor/run_with_compiler.cmd
-extra/release/bump_version.py
-extra/release/doc4allmods
-extra/release/flakeplus.py
-extra/release/removepyc.sh
-extra/release/verify-reference-index.sh
-extra/requirements/default.txt
-extra/requirements/dev.txt
-extra/requirements/docs.txt
-extra/requirements/funtest.txt
-extra/requirements/pkgutils.txt
-extra/requirements/py26.txt
-extra/requirements/test-ci.txt
-extra/requirements/test-ci3.txt
-extra/requirements/test.txt
-extra/requirements/test3.txt
-extra/requirements/extras/beanstalk.txt
-extra/requirements/extras/couchdb.txt
-extra/requirements/extras/kazoo.txt
-extra/requirements/extras/librabbitmq.txt
-extra/requirements/extras/mongodb.txt
-extra/requirements/extras/msgpack.txt
-extra/requirements/extras/pyro.txt
-extra/requirements/extras/qpid.txt
-extra/requirements/extras/redis.txt
-extra/requirements/extras/slmq.txt
-extra/requirements/extras/sqlalchemy.txt
-extra/requirements/extras/sqs.txt
-extra/requirements/extras/yaml.txt
-extra/requirements/extras/zeromq.txt
-extra/requirements/extras/zookeeper.txt
-funtests/__init__.py
-funtests/setup.cfg
-funtests/setup.py
-funtests/transport.py
-funtests/tests/__init__.py
-funtests/tests/test_SLMQ.py
-funtests/tests/test_SQS.py
-funtests/tests/test_amqp.py
-funtests/tests/test_amqplib.py
-funtests/tests/test_beanstalk.py
-funtests/tests/test_couchdb.py
-funtests/tests/test_django.py
-funtests/tests/test_librabbitmq.py
-funtests/tests/test_mongodb.py
-funtests/tests/test_pyamqp.py
-funtests/tests/test_qpid.py
-funtests/tests/test_redis.py
-funtests/tests/test_sqla.py
-funtests/tests/test_zookeeper.py
-kombu/__init__.py
-kombu/abstract.py
-kombu/clocks.py
-kombu/common.py
-kombu/compat.py
-kombu/compression.py
-kombu/connection.py
-kombu/entity.py
-kombu/exceptions.py
-kombu/five.py
-kombu/log.py
-kombu/message.py
-kombu/messaging.py
-kombu/mixins.py
-kombu/pidbox.py
-kombu/pools.py
-kombu/serialization.py
-kombu/simple.py
-kombu/syn.py
-kombu.egg-info/PKG-INFO
-kombu.egg-info/SOURCES.txt
-kombu.egg-info/dependency_links.txt
-kombu.egg-info/not-zip-safe
-kombu.egg-info/requires.txt
-kombu.egg-info/top_level.txt
-kombu/async/__init__.py
-kombu/async/debug.py
-kombu/async/hub.py
-kombu/async/semaphore.py
-kombu/async/timer.py
-kombu/tests/__init__.py
-kombu/tests/case.py
-kombu/tests/mocks.py
-kombu/tests/test_clocks.py
-kombu/tests/test_common.py
-kombu/tests/test_compat.py
-kombu/tests/test_compression.py
-kombu/tests/test_connection.py
-kombu/tests/test_entities.py
-kombu/tests/test_log.py
-kombu/tests/test_messaging.py
-kombu/tests/test_mixins.py
-kombu/tests/test_pidbox.py
-kombu/tests/test_pools.py
-kombu/tests/test_serialization.py
-kombu/tests/test_simple.py
-kombu/tests/test_syn.py
-kombu/tests/async/__init__.py
-kombu/tests/async/test_hub.py
-kombu/tests/async/test_semaphore.py
-kombu/tests/transport/__init__.py
-kombu/tests/transport/test_SQS.py
-kombu/tests/transport/test_amqplib.py
-kombu/tests/transport/test_base.py
-kombu/tests/transport/test_filesystem.py
-kombu/tests/transport/test_librabbitmq.py
-kombu/tests/transport/test_memory.py
-kombu/tests/transport/test_mongodb.py
-kombu/tests/transport/test_pyamqp.py
-kombu/tests/transport/test_qpid.py
-kombu/tests/transport/test_redis.py
-kombu/tests/transport/test_sqlalchemy.py
-kombu/tests/transport/test_transport.py
-kombu/tests/transport/virtual/__init__.py
-kombu/tests/transport/virtual/test_base.py
-kombu/tests/transport/virtual/test_exchange.py
-kombu/tests/transport/virtual/test_scheduling.py
-kombu/tests/utils/__init__.py
-kombu/tests/utils/test_amq_manager.py
-kombu/tests/utils/test_debug.py
-kombu/tests/utils/test_encoding.py
-kombu/tests/utils/test_functional.py
-kombu/tests/utils/test_utils.py
-kombu/transport/SLMQ.py
-kombu/transport/SQS.py
-kombu/transport/__init__.py
-kombu/transport/amqplib.py
-kombu/transport/base.py
-kombu/transport/beanstalk.py
-kombu/transport/couchdb.py
-kombu/transport/filesystem.py
-kombu/transport/librabbitmq.py
-kombu/transport/memory.py
-kombu/transport/mongodb.py
-kombu/transport/pyamqp.py
-kombu/transport/pyro.py
-kombu/transport/qpid.py
-kombu/transport/redis.py
-kombu/transport/zmq.py
-kombu/transport/zookeeper.py
-kombu/transport/django/__init__.py
-kombu/transport/django/managers.py
-kombu/transport/django/models.py
-kombu/transport/django/management/__init__.py
-kombu/transport/django/management/commands/__init__.py
-kombu/transport/django/management/commands/clean_kombu_messages.py
-kombu/transport/django/migrations/0001_initial.py
-kombu/transport/django/migrations/__init__.py
-kombu/transport/django/south_migrations/0001_initial.py
-kombu/transport/django/south_migrations/__init__.py
-kombu/transport/sqlalchemy/__init__.py
-kombu/transport/sqlalchemy/models.py
-kombu/transport/virtual/__init__.py
-kombu/transport/virtual/exchange.py
-kombu/transport/virtual/scheduling.py
-kombu/utils/__init__.py
-kombu/utils/amq_manager.py
-kombu/utils/compat.py
-kombu/utils/debug.py
-kombu/utils/encoding.py
-kombu/utils/eventio.py
-kombu/utils/functional.py
-kombu/utils/limits.py
-kombu/utils/text.py
-kombu/utils/url.py
-requirements/default.txt
-requirements/dev.txt
-requirements/docs.txt
-requirements/funtest.txt
-requirements/pkgutils.txt
-requirements/py26.txt
-requirements/test-ci.txt
-requirements/test-ci3.txt
-requirements/test.txt
-requirements/test3.txt
-requirements/extras/beanstalk.txt
-requirements/extras/couchdb.txt
-requirements/extras/kazoo.txt
-requirements/extras/librabbitmq.txt
-requirements/extras/mongodb.txt
-requirements/extras/msgpack.txt
-requirements/extras/pyro.txt
-requirements/extras/qpid.txt
-requirements/extras/redis.txt
-requirements/extras/slmq.txt
-requirements/extras/sqlalchemy.txt
-requirements/extras/sqs.txt
-requirements/extras/yaml.txt
-requirements/extras/zeromq.txt
-requirements/extras/zookeeper.txt
\ No newline at end of file
diff --git a/kombu.egg-info/dependency_links.txt b/kombu.egg-info/dependency_links.txt
deleted file mode 100644
index 8b13789..0000000
--- a/kombu.egg-info/dependency_links.txt
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/kombu.egg-info/not-zip-safe b/kombu.egg-info/not-zip-safe
deleted file mode 100644
index 8b13789..0000000
--- a/kombu.egg-info/not-zip-safe
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/kombu.egg-info/requires.txt b/kombu.egg-info/requires.txt
deleted file mode 100644
index ca97392..0000000
--- a/kombu.egg-info/requires.txt
+++ /dev/null
@@ -1,49 +0,0 @@
-anyjson>=0.3.3
-amqp>=1.4.9,<2.0
-
-[:python_version=="2.6"]
-importlib
-ordereddict
-
-[beanstalk]
-beanstalkc
-
-[couchdb]
-couchdb
-
-[librabbitmq]
-librabbitmq>=1.6.1
-
-[mongodb]
-pymongo>=2.6.2
-
-[msgpack]
-msgpack-python>=0.4.7
-
-[pyro]
-pyro4
-
-[qpid]
-qpid-python>=0.26
-qpid-tools>=0.26
-
-[redis]
-redis>=2.10.3
-
-[slmq]
-softlayer_messaging>=1.0.3
-
-[sqlalchemy]
-sqlalchemy
-
-[sqs]
-boto>=2.13.3
-
-[yaml]
-PyYAML>=3.10
-
-[zeromq]
-pyzmq>=13.1.0
-
-[zookeeper]
-kazoo>=1.3.1
diff --git a/kombu.egg-info/top_level.txt b/kombu.egg-info/top_level.txt
deleted file mode 100644
index 3a8f969..0000000
--- a/kombu.egg-info/top_level.txt
+++ /dev/null
@@ -1 +0,0 @@
-kombu
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/kombu.git
More information about the Python-modules-commits
mailing list