From b060ac32c1b8274924c68800dce4fdb7a0254730 Mon Sep 17 00:00:00 2001 From: Alexander Kurakin Date: Tue, 7 Feb 2017 15:27:55 +0300 Subject: [PATCH] Fix dependencies: remove redundant Contents of requirements.txt is not a runtime dependencies list as it is a development dependencies list. Fix it. --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index ebf9d7b..b735bea 100644 --- a/setup.py +++ b/setup.py @@ -19,8 +19,11 @@ VERSION = line.strip().split()[-1][1:-1] break -with open('requirements.txt') as fid: - INSTALL_REQUIRES = [l.strip() for l in fid.readlines() if l] +INSTALL_REQUIRES = [ + 'scipy>=0.9.0', + 'numpy>=1.6.1' + 'scikit-learn>=0.15.2' +] readme = open('README.rst').read() doclink = """