From 61b8667f3bda911e022a0c92a7126e99eab31268 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 3 May 2016 14:11:25 +0200 Subject: [PATCH] Include icon PNG files in the bdist zip --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9ebd194..30d5177 100755 --- a/setup.py +++ b/setup.py @@ -1,4 +1,5 @@ #!/usr/bin/env python +import glob import sys import shutil import subprocess @@ -176,7 +177,8 @@ setup( author='Sybren A. Stüvel', author_email='sybren@stuvel.eu', packages=find_packages('.'), - data_files=[('blender_cloud', ['README.md'])], + data_files=[('blender_cloud', ['README.md']), + ('blender_cloud/icons', glob.glob('blender_cloud/icons/*'))], scripts=[], url='https://developer.blender.org/diffusion/BCA/', license='GNU General Public License v2 or later (GPLv2+)',