From 964a583a459f7dbb840ffe906b874bacbf001175 Mon Sep 17 00:00:00 2001 From: Janis Date: Tue, 21 Aug 2018 21:46:10 +1000 Subject: [PATCH] Fix setup.py and requirements --- requirements.txt | 5 +++-- setup.py | 4 ++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index a881eb0..24d6449 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ +--index-url https://pypi.python.org/simple/ + +-e . mock -scipy -numpy diff --git a/setup.py b/setup.py index 47c7771..ef2195c 100644 --- a/setup.py +++ b/setup.py @@ -11,4 +11,8 @@ license='MIT', url='https://github.com/jameslyons/python_speech_features', packages=['python_speech_features'], + install_requires=[ + 'numpy', + 'scipy', + ] )