forked from wdtinc/flask-pika
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.03 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
"""
Flask-Pika
-------------
This extension provides a simple way to expose a Pika blocking channel inside of Flask.
Once a channel is obtained, use it as you would any normal Pika blocking channel.
"""
from setuptools import setup
setup(
name='Flask-Pika',
version='0.3.2',
url='https://github.com/WeatherDecisionTechnologies/flask-pika',
license='BSD',
author='Weather Decision Technologies',
author_email='[email protected]',
description='Pika amqp flask extension',
long_description=__doc__,
zip_safe=False,
include_package_data=True,
py_modules=['flask_pika'],
platforms='any',
install_requires=[
'Flask>=1.1',
'pika==1.1.0'
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)