From 303d18981f861aafdf3a07e5b079812b90ce6805 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yoshiki=20V=C3=A1zquez=20Baeza?= Date: Fri, 27 Sep 2019 10:41:53 -0700 Subject: [PATCH] Fix missing asset (index.html) Fixes #90 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index efa889f..ff2bb2e 100644 --- a/setup.py +++ b/setup.py @@ -66,5 +66,5 @@ entry_points={ 'qiime2.plugins': ['q2-mmvec=mmvec.q2.plugin_setup:plugin'] }, - package_data={}, + package_data={'mmvec': ['q2/assets/*.html']}, zip_safe=False)