Skip to content

Commit

Permalink
Use setuptools if available, for enhanced functionality for packagers.
Browse files Browse the repository at this point in the history
Root committed Mar 28, 2011
1 parent 9429320 commit 44abe39
Showing 2 changed files with 12 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -6,6 +6,13 @@ Version 0.6.2-devel
AMQPReader.read_shortstr() in serialization.py, the default
value of 'utf-8' gives the same behavior as before.

Big speedup for sending large messages. For example, sending
a single 100MB message on my machine goes from 90 seconds to
around 0.6 seconds.

Use setuptools if available, for enhanced functionality
for packagers.


Version 0.6.1

6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -9,7 +9,11 @@
"""

import sys
from distutils.core import setup

try:
from setuptools import setup
except:
from distutils.core import setup

setup(name = "amqplib",
description = "AMQP Client Library",

0 comments on commit 44abe39

Please sign in to comment.