mirror of https://github.com/captn3m0/hackertray
22 lines
929 B
Python
22 lines
929 B
Python
from setuptools import setup
|
|
|
|
setup(name='hackertray',
|
|
version='1.5',
|
|
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',
|
|
url='http://captnemo.in/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)
|