Adds hacker-tray icon to the package.

Fixes #11
Thanks to @Gonzih for providing a transparent, better looking icon.
This commit is contained in:
Abhay Rana 2013-11-30 11:34:06 +05:30
parent 8f0b08137b
commit 2a6c475d31
3 changed files with 3 additions and 3 deletions

1
MANIFEST.in Normal file
View File

@ -0,0 +1 @@
include images/hacker-tray.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 958 B

View File

@ -1,7 +1,7 @@
from setuptools import setup
setup(name='hackertray',
version='1.6',
version='1.7',
description='Hacker News app that sits in your System Tray',
long_description='HackerTray is a simple Hacker News Linux application that lets you view top HN stories in your System Tray. It relies on appindicator, so it is not guaranteed to work on all systems. It also provides a Gtk StatusIcon fallback in case AppIndicator is not available.',
keywords='hacker news hn tray system tray icon hackertray',
@ -10,8 +10,7 @@ setup(name='hackertray',
author_email='me@captnemo.in',
license='MIT',
packages=['hackertray'],
package_data={'hackertray': ['../images/hacker-tray.png']},
include_package_data=True,
data_files=[('images', ['images/hacker-tray.png'])],
install_requires=[
'requests',
],