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

v0.81

parent d7ce5af1
No related branches found
Tags v0.81
No related merge requests found
...@@ -16,12 +16,20 @@ and there are memoryviews **_everywhere_**. ...@@ -16,12 +16,20 @@ and there are memoryviews **_everywhere_**.
This is borderline absurd. This is borderline absurd.
CoolAMQP is not a direct AMQP client - it also handles reconnections, transactional sending,
and so on, mostly via Futures. This means it has a certain opinion on how to
handle AMQP, but you can feel the spirit of AMQP underneath.
The project is actively maintained and used in a commercial project. Tests can run The project is actively maintained and used in a commercial project. Tests can run
either on Vagrant (Vagrantfile attached) or Travis CI, and run against RabbitMQ. either on Vagrant (Vagrantfile attached) or Travis CI, and run against RabbitMQ.
CoolAMQP won't touch your messages. It's your bag of bytes, and your properties.
Enjoy! Enjoy!
_Watch out for memoryviews!_
## Notes ## Notes
Assertions are sprinkled throughout the code. You may wish to run with optimizations enabled Assertions are sprinkled throughout the code. You may wish to run with optimizations enabled
......
...@@ -22,7 +22,8 @@ setup(name=u'CoolAMQP', ...@@ -22,7 +22,8 @@ setup(name=u'CoolAMQP',
'coolamqp.framing.compilation', 'coolamqp.framing.compilation',
], ],
license=u'MIT License', license=u'MIT License',
long_description=u'''AMQP client, but with dynamic class generation and memoryviews FOR THE GODSPEED. long_description=u'''Pure Python AMQP client, but with dynamic class generation and memoryviews FOR THE GODSPEED.
Also, handles your reconnects and transactionality THE RIGHT WAY''', Also, handles your reconnects and transactionality THE RIGHT WAY''',
requires=['amqp', 'six', 'monotonic'], requires=['amqp', 'six', 'monotonic'],
tests_require=["nose"], tests_require=["nose"],
......
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