#!/usr/bin/env python # coding=UTF-8 from setuptools import setup setup(name=u'CoolAMQP', version='0.91rc2', description=u'Very fast pure-Python AMQP client', author=u'DMS Serwis s.c.', author_email=u'piotrm@smok.co', url=u'https://github.com/smok-serwis/coolamqp', # download_url='https://github.com/smok-serwis/coolamqp/archive/v0.91.zip', keywords=['amqp', 'rabbitmq', 'client', 'network', 'ha', 'high availability'], packages=[ 'coolamqp', 'coolamqp.uplink', 'coolamqp.uplink.connection', 'coolamqp.uplink.listener', 'coolamqp.clustering', 'coolamqp.attaches', 'coolamqp.framing', 'coolamqp.framing.compilation', ], license=u'MIT License', 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, though somewhat opinionated''', install_requires=['six', 'monotonic', 'futures'], tests_require=["nose", 'coverage', 'codeclimate-test-reporter'], test_suite='nose.collector', platforms=[ 'posix' ], classifiers=[ 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', # 'Operating System :: OS Independent', epoll :'( 'Operating System :: POSIX :: Linux', 'Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: MIT License', 'Topic :: Software Development :: Libraries', 'Intended Audience :: Developers', 'Topic :: Software Development :: Libraries :: Python Modules' # obvi ] )