From e73c4da1682d1584c2d166bd7348089b43fe2e59 Mon Sep 17 00:00:00 2001
From: Tiago Freitas Pereira <tiagofrepereira@gmail.com>
Date: Fri, 22 Apr 2022 09:27:45 +0200
Subject: [PATCH] [conda] Fixed packaging

---
 MANIFEST.in      | 3 +--
 conda/meta.yaml  | 3 +++
 requirements.txt | 3 +++
 3 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/MANIFEST.in b/MANIFEST.in
index 0eb9399..89f15c6 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,4 +1,3 @@
 include LICENSE README.rst buildout.cfg develop.cfg requirements.txt version.txt
 recursive-include doc conf.py *.rst
-recursive-include bob *.cpp *.h
-recursive-include bob/io/base/data *.*
+recursive-include bob/io/base/test/data *.*
diff --git a/conda/meta.yaml b/conda/meta.yaml
index debadfa..63f2cb2 100644
--- a/conda/meta.yaml
+++ b/conda/meta.yaml
@@ -24,10 +24,13 @@ requirements:
     - bob.extension
     - h5py {{ h5py }}
     - numpy {{ numpy }}
+    - imageio {{ imageio }}
   run:
     - python
     - setuptools
     - {{ pin_compatible('numpy') }}
+    - {{ pin_compatible('imageio') }}
+    - {{ pin_compatible('h5py') }}
 
 test:
   imports:
diff --git a/requirements.txt b/requirements.txt
index 8fd79bb..33a37b0 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1 +1,4 @@
 bob.extension
+h5py
+imageio
+numpy
\ No newline at end of file
-- 
GitLab