-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (28 loc) · 926 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='tx-easy-pika',
version='1.0.1',
author='SweetIQ',
author_email='[email protected]',
description=('Wrapper around Pika\'s Twisted connection to make it simpler to work with.'),
packages=find_packages(),
install_requires=[
'Twisted==14.0.0',
'pika==0.9.14'
],
url='http://github.com/SweetIQ/tx-easy-pika',
keywords=["pika", "rabbitmq", "twisted", "amqpy"],
package_data={"tx-easy-pika": ["requirements.txt"]},
include_package_data=True,
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers"
],
long_description="""\
Easy Pika - Twisted
---------------------------------
A wrapper around Pika's Twisted components to make it easier to work with.
""",
)