From edc9eb70d1828f1f64d144bc9f516c806cf0de9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl> Date: Sat, 24 Dec 2016 01:24:44 +0100 Subject: [PATCH] moar trove --- coolamqp/__init__.py | 2 +- setup.py | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/coolamqp/__init__.py b/coolamqp/__init__.py index a62bbe7..89cce37 100644 --- a/coolamqp/__init__.py +++ b/coolamqp/__init__.py @@ -2,4 +2,4 @@ from .cluster import ClusterNode, Cluster from .events import ConnectionDown, ConnectionUp, MessageReceived, ConsumerCancelled from .messages import Message, Exchange, Queue -__version__ = '0.8' +__version__ = '0.9' diff --git a/setup.py b/setup.py index b05926c..0eef868 100644 --- a/setup.py +++ b/setup.py @@ -9,12 +9,12 @@ def reqs(): setup(name='CoolAMQP', - version='0.8', + version='0.9', description='AMQP client with sane reconnects', 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.8.zip', + download_url='https://github.com/smok-serwis/coolamqp/archive/v0.9.zip', keywords=['amqp', 'pyamqp', 'rabbitmq', 'client', 'network', 'ha', 'high availability'], packages=['coolamqp', 'coolamqp.backends'], license='MIT License', @@ -30,6 +30,9 @@ setup(name='CoolAMQP', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', - 'Operating System :: OS Independent' + 'Operating System :: OS Independent', + 'Development Status :: 5 - Production/Stable', + 'License :: OSI Approved :: MIT License', + 'Topic :: Software Development :: Libraries' ] ) -- GitLab