Skip to content

Commit ab2c03b

Browse files
committed
fix setup py
1 parent a4244fa commit ab2c03b

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

message_queue/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.1.5'
1+
__version__ = '0.1.6'
22

33
from message_queue.logger import *
44

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,15 @@
22

33
setuptools.setup(
44
name='message-queue',
5-
version='0.1.5',
5+
version='0.1.6',
66
description='Message Queue',
77
long_description='Message Queue python library to publish and subscribe to queues with diferent types of adapters.',
88
url='https://github.com/ingresse/message-queue-python',
99
author='Ingresse',
1010
author_email='vitor.leal@ingresse.com',
1111
license='BSD',
1212
packages=setuptools.find_packages(),
13-
install_requires=open('requirements.txt').read(),
14-
download_url = 'https://github.com/ingresse/message-queue-python/tarball/0.1.5',
15-
zip_safe=True,
13+
install_requires=['pika>=0.10.0'],
14+
download_url = 'https://github.com/ingresse/message-queue-python/tarball/0.1.6',
1615
)
1716

0 commit comments

Comments
 (0)