-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (36 loc) · 1.18 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
34
35
36
37
38
from setuptools import find_packages, setup
readme = open('README.rst').read() + open('CHANGELOG.rst').read()
setup(
name='asgi_rabbitmq',
version='0.5.5',
description='RabbitMQ backend for ASGI',
long_description=readme,
url='https://github.com/proofit404/asgi_rabbitmq',
license='BSD',
author='Django Software Foundation',
author_email='foundation@djangoproject.com',
maintainer='Artem Malyshev',
maintainer_email='proofit404@gmail.com',
packages=find_packages(),
install_requires=[
'pika~=0.11.0',
'asgiref~=1.1.2',
'msgpack-python',
'cached-property',
'futures ; python_version < "3.0"',
],
extras_require={
'tests': ['rabbitmq-admin>=0.2'],
},
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',
],
)