Skip to content
Snippets Groups Projects
Commit 99069aa6 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

v0.9

parent edc9eb70
No related branches found
Tags v0.9
No related merge requests found
...@@ -2,4 +2,4 @@ ...@@ -2,4 +2,4 @@
from .cluster import ClusterNode, Cluster from .cluster import ClusterNode, Cluster
from .events import ConnectionDown, ConnectionUp, MessageReceived, ConsumerCancelled from .events import ConnectionDown, ConnectionUp, MessageReceived, ConsumerCancelled
from .messages import Message, Exchange, Queue from .messages import Message, Exchange, Queue
__version__ = '0.9'
...@@ -16,10 +16,13 @@ setup(name='CoolAMQP', ...@@ -16,10 +16,13 @@ setup(name='CoolAMQP',
url='https://github.com/smok-serwis/coolamqp', url='https://github.com/smok-serwis/coolamqp',
download_url='https://github.com/smok-serwis/coolamqp/archive/v0.9.zip', download_url='https://github.com/smok-serwis/coolamqp/archive/v0.9.zip',
keywords=['amqp', 'pyamqp', 'rabbitmq', 'client', 'network', 'ha', 'high availability'], keywords=['amqp', 'pyamqp', 'rabbitmq', 'client', 'network', 'ha', 'high availability'],
packages=['coolamqp', 'coolamqp.backends'], packages=[
'coolamqp',
'coolamqp.backends'
],
license='MIT License', license='MIT License',
long_description=u'The AMQP client that handles reconnection madness for you', long_description=u'The AMQP client that handles reconnection madness for you',
requires=reqs(), requires=['amqp', 'six', 'monotonic'],
tests_require=["nose"], tests_require=["nose"],
test_suite='nose.collector', test_suite='nose.collector',
classifiers=[ classifiers=[
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment