From 5da26b1facb7b71205840e50e5e141be98b9d539 Mon Sep 17 00:00:00 2001 From: David Maitland Date: Thu, 13 Aug 2015 11:45:50 +0100 Subject: [PATCH] Removed multiprocessing from the install_requires --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c6bb21a..ac5bdae 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ from setuptools import setup setup( name='nimvelo', description='Python 2.7 client library for the Nimvelo/Sipcentric API', - version='0.1.2', + version='0.1.3', url='https://github.com/Nimvelo/python-client', author='David Maitland', author_email='david.maitland@nimvelo.com', @@ -19,5 +19,5 @@ setup( keywords='nimvelo sipcentric voip pbx sms sip', packages=['nimvelo', 'nimvelo/stream'], requires=['math', 'json', 'logging', 'time'], - install_requires=['requests', 'multiprocessing'] + install_requires=['requests'] )