From 76ebb28a57530c733d2dce0a0bb18167e85bf101 Mon Sep 17 00:00:00 2001
From: Andre Mayoraz <andre.mayoraz@idiap.ch>
Date: Wed, 19 Oct 2022 16:55:21 +0200
Subject: [PATCH] Small cleanup in meta.yaml and MANIFEST.in

---
 MANIFEST.in     | 3 +--
 conda/meta.yaml | 6 +++---
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/MANIFEST.in b/MANIFEST.in
index a77d48f..ce4d10e 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,4 +1,3 @@
 include LICENSE README.rst develop.cfg
 recursive-include doc conf.py *.rst
-recursive-include bob/learn/em *.cpp *.h
-recursive-include bob/learn/em/data *.*
+recursive-include src/bob/learn/em/data *.*
diff --git a/conda/meta.yaml b/conda/meta.yaml
index 3ea50e4..fba4a0b 100644
--- a/conda/meta.yaml
+++ b/conda/meta.yaml
@@ -43,7 +43,7 @@ requirements:
 
 test:
   imports:
-    - {{ name }}
+    - {{ name.replace('-','_') }}
   commands:
     # runs tests for package only, report only what is in the package
     # creates xml tests report and place it in a specific directory
@@ -53,6 +53,6 @@ test:
 
 about:
   home: {{ data['project']['urls']['homepage'] }}
-  license: {{ data['project']['description'] }}
-  summary: {{ data['project']['license']['text'] }}
+  summary: {{ data['project']['description'] }}
+  license: {{ data['project']['license']['text'] }}
   license_family: BSD
-- 
GitLab