diff options
author | Florian Bruhin <git@the-compiler.org> | 2014-12-28 14:35:28 +0100 |
---|---|---|
committer | Florian Bruhin <git@the-compiler.org> | 2014-12-28 14:35:28 +0100 |
commit | 2a4e884e1b89b731301cf3bc46c7abe4115c3b44 (patch) | |
tree | a2f8f0eaed7b1449815870426a0dd976c9b6bae4 /setup.py | |
parent | aef693805a50eb09a3029484a782581b95ef8189 (diff) | |
download | qutebrowser-2a4e884e1b89b731301cf3bc46c7abe4115c3b44.tar.gz qutebrowser-2a4e884e1b89b731301cf3bc46c7abe4115c3b44.zip |
Set window icon. Closes #325.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -23,6 +23,7 @@ import os import os.path +import glob from scripts import setupcommon as common @@ -45,6 +46,7 @@ try: test_suite='qutebrowser.test', zip_safe=True, install_requires=['pypeg2', 'jinja2', 'pygments'], + data_files=[('icons', glob.glob('icons/*'))], **common.setupdata ) finally: |