From b1898f6636230ee3849b5d8a2010dc2e847f2258 Mon Sep 17 00:00:00 2001 From: Michael P Schroeder Date: Wed, 13 Jul 2016 09:43:48 +0200 Subject: [PATCH] version declaration --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d096dd4..1797a17 100644 --- a/setup.py +++ b/setup.py @@ -2,11 +2,11 @@ from setuptools import find_packages setup(name='mutex', - version='1.0.0', + version='1.0.1', description='A simple algorithm to estimate the significance of a mutual exclusive pattern or co-occurrence', author='Michael P Schroeder', author_email='michael.p.schroeder@gmail.com', url='https://github.com/mpschr/mutex', packages=find_packages(), - install_requires=['pandas', 'numpy'] + install_requires=['pandas>=0.17', 'numpy>=1.10.4', 'joblib', 'multiprocessing', 'scipy>=0.17'] )