diff --git a/setup.py b/setup.py index c438ee99013b6c7f331015190563f5e4756e816c..dfb116ebd2c84266ac5e35226acc604dc0918976 100644 --- a/setup.py +++ b/setup.py @@ -9,19 +9,21 @@ setup(name='CoolAMQP', author='DMS Serwis s.c.', author_email='piotrm@smok.co', url='https://github.com/smok-serwis/coolamqp', - download_url='https://github.com/smok-serwis/coolamqp/archive/v0.12.zip', - keywords=['amqp', 'pyamqp', 'rabbitmq', 'client', 'network', 'ha', 'high availability'], +# download_url='https://github.com/smok-serwis/coolamqp/archive/v0.12.zip', + keywords=['amqp', 'rabbitmq', 'client', 'network', 'ha', 'high availability'], packages=[ 'coolamqp', 'coolamqp.backends', 'coolamqp.uplink', - 'coolamqp.uplink.framing', - 'coolamqp.uplink.framing.compilation', - 'coolamqp.uplink.streams', - + 'coolamqp.uplink.connection', + 'coolamqp.uplink.listener', + 'coolamqp.clustering', + 'coolamqp.attaches', + 'coolamqp.framing', + 'coolamqp.framing.compilation', ], license='MIT License', - long_description=u'The AMQP client that handles reconnection madness for you', + long_description=u'Best-in-class Python AMQP client', requires=['amqp', 'six', 'monotonic'], tests_require=["nose"], test_suite='nose.collector',