hackertray/setup.py
Bruno Cauet a11f7c4507 image: correct declaration + usage
- Declaration: setup.py declares the image a 'hackertray' data, gives
  its location and asks its inclusion
- appindicator looks for the picture in folders near itself, instead of
  /usr/bin (near the main executable) or the first entry of path.
2013-11-28 15:47:03 +01:00

20 lines
580 B
Python

from setuptools import setup
setup(name='hackertray',
version='1.1',
description='Hacker News app that sits in your System Tray',
url='http://github.com/captn3m0/hackertray',
author='Abhay Rana',
author_email='me@captnemo.in',
license='MIT',
packages=['hackertray'],
package_data={'hackertray': ['../images/hacker-tray.png']},
include_package_data=True,
install_requires=[
'requests',
],
entry_points={
'console_scripts': ['hackertray = hackertray:main'],
},
zip_safe=False)