From: =?utf-8?b?UGljY2EgRnLDg8KpZMODwqlyaWMtRW1tYW51ZWw=?= Date: Thu, 7 Sep 2017 14:33:43 +0200 Subject: fix the install_requires depends --- setup.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bc165cb..8b0dcb2 100644 --- a/setup.py +++ b/setup.py @@ -963,7 +963,15 @@ def get_project_configuration(dry_run): # for most of the computation "numpy%s" % numpy_requested_version, # for the script launcher - "setuptools"] + "setuptools", + # for debian + "h5py", + "lxml", + "matplotlib", + "pil", + "PyQt5", + "six" + ] setup_requires = ["setuptools", "numpy"]