From aabfdea73298ed8aa9b5187fca899d226c69a448 Mon Sep 17 00:00:00 2001 From: alan-wu Date: Fri, 1 Mar 2019 11:40:46 +1300 Subject: [PATCH] Add scipy and numpy to required packages and change ZincPythonTools and opencmiss.utils to link to a tarball. --- requirements.txt | 2 -- setup.py | 6 ++++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index ac24e783..59d67020 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1 @@ --e git+https://github.com/OpenCMISS-Bindings/opencmiss.utils.git#egg=opencmiss.utils --e git+https://github.com/OpenCMISS-Bindings/ZincPythonTools.git#egg=ZincPythonTools -e . diff --git a/setup.py b/setup.py index 92dc44c7..2fd3c947 100644 --- a/setup.py +++ b/setup.py @@ -19,8 +19,10 @@ def readfile(filename, split=False): # into the 'requirements.txt' file. requires = [ # minimal requirements listing - 'opencmiss.utils', - 'ZincPythonTools', + 'opencmiss.utils @ https://api.github.com/repos/OpenCMISS-Bindings/opencmiss.utils/tarball/master', + 'ZincPythonTools @ https://api.github.com/repos/OpenCMISS-Bindings/ZincPythonTools/tarball/master', + 'scipy', + 'numpy', ] source_license = readfile("LICENSE")