diff options
author | Matt Singleton <matt@xcolour.net> | 2017-04-21 22:40:34 -0400 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2017-04-21 22:40:34 -0400 |
commit | 1cbd15b3f35e162a21b2dc2ac784b9acf71b6c3d (patch) | |
tree | 1654350f829f767a39f88aaa9a54ce8a6a9c5ad6 | |
parent | 45926db9caed33062ab491df63f33ee3b3f5c468 (diff) |
include favicons in the distribution
-rw-r--r-- | setup.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2,12 +2,14 @@ from setuptools import setup setup( name="unbiased", - version="0", + version="1", packages=['unbiased'], package_data={ 'unbiased': [ 'html_template/*.html', 'html_template/*.css', + 'html_template/*.ico', + 'html_template/*.png', ], }, install_requires=[ |