summaryrefslogtreecommitdiff
path: root/debian/patches/0007-add-install_requires-dependencies.patch
blob: ad127d1667d2d5222e1ab0c480848f91717d81ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
From: =?utf-8?q?Picca_Fr=C3=A9d=C3=A9ric-Emmanuel?=
 <picca@synchrotron-soleil.fr>
Date: Thu, 17 Aug 2017 09:30:39 +0200
Subject: add install_requires dependencies

---
 setup.py | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 51f9be2..d214b5a 100644
--- a/setup.py
+++ b/setup.py
@@ -777,7 +777,24 @@ def get_project_configuration(dry_run):
         # for most of the computation
         "numpy",
         # for the script launcher
-        "setuptools"]
+        "setuptools",
+        # Debian added
+        'futures;python_version<"3.2"',
+        "ipython",
+        "qtconsole",
+        'enum34;python_version<"3.4"',
+        "fabio",
+        "h5py",
+        "lxml",
+        "mako",
+        "matplotlib",
+        "PyOpenGL",
+        "pil",
+        "pyopencl",
+        "PyQt5",
+        "scipy",
+        "six"
+    ]
 
     setup_requires = ["setuptools", "numpy"]