The source for the package is here
I'm installing the package from the index via:
easy_install hackertray
pip install hackertray
easy_install
installs images/hacker-tray.png
to the following folder:
/usr/local/lib/python2.7/dist-packages/hackertray-1.8-py2.7.egg/images/
While, pip
installs it to:
/usr/local/images/
My setup.py is as follows:
from setuptools import setup
setup(name='hackertray',
version='1.8',
description='Hacker News app that sits in your System Tray',
packages=['hackertray'],
data_files=[('images', ['images/hacker-tray.png'])])
My MANIFEST
file is:
include images/hacker-tray.png