diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..143dc53 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include images/hacker-tray.png \ No newline at end of file diff --git a/images/hacker-tray.png b/images/hacker-tray.png index 777f1e3..f5f4468 100644 Binary files a/images/hacker-tray.png and b/images/hacker-tray.png differ diff --git a/setup.py b/setup.py index 7b9686f..a8767a7 100644 --- a/setup.py +++ b/setup.py @@ -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', ],