Include icon PNG files in the bdist zip

This commit is contained in:
Sybren A. Stüvel 2016-05-03 14:11:25 +02:00
parent ad7e9acb5d
commit 61b8667f3b

View File

@ -1,4 +1,5 @@
#!/usr/bin/env python #!/usr/bin/env python
import glob
import sys import sys
import shutil import shutil
import subprocess import subprocess
@ -176,7 +177,8 @@ setup(
author='Sybren A. Stüvel', author='Sybren A. Stüvel',
author_email='sybren@stuvel.eu', author_email='sybren@stuvel.eu',
packages=find_packages('.'), packages=find_packages('.'),
data_files=[('blender_cloud', ['README.md'])], data_files=[('blender_cloud', ['README.md']),
('blender_cloud/icons', glob.glob('blender_cloud/icons/*'))],
scripts=[], scripts=[],
url='https://developer.blender.org/diffusion/BCA/', url='https://developer.blender.org/diffusion/BCA/',
license='GNU General Public License v2 or later (GPLv2+)', license='GNU General Public License v2 or later (GPLv2+)',