-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
33 lines (31 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup, find_packages
readme = open('README.rst').read() + open('CHANGELOG.rst').read()
setup(
name='asgi_rabbitmq',
version='0.2',
description='RabbitMQ backend for ASGI',
long_description=readme,
url='https://github.com/proofit404/asgi_rabbitmq',
license='BSD',
author='Django Software Foundation',
author_email='[email protected]',
maintainer='Artem Malyshev',
maintainer_email='[email protected]',
packages=find_packages(),
install_requires=[
'pika==0.10.0',
'asgiref>=1.0.0',
'msgpack-python',
'futures ; python_version < "3.0"',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development',
])