From 8e9a598ed90cf304b97e49ac2fd1d6f9b6ccc44f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laura=20=C5=BDigutyt=C4=97?= Date: Tue, 21 Dec 2021 22:51:55 +0100 Subject: [PATCH] Fix error that icons folder was not distributed --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 43deb57b..76a28ccc 100644 --- a/setup.py +++ b/setup.py @@ -2,4 +2,6 @@ # -*- coding: utf-8 -*- from setuptools import setup -setup() +setup( + package_data={'napari_clusters_plotter': ['icons/*']} +)