hackertray/setup.py

28 lines
917 B
Python
Raw Normal View History

import sys
from setuptools import setup
from setuptools import find_packages
requirements = ['requests']
setup(name='hackertray',
2020-06-14 20:05:07 +00:00
version='4.0.1',
description='Hacker News app that sits in your System Tray',
2020-06-14 18:57:10 +00:00
long_description='HackerTray is a simple Hacker News Linux application that lets you view top HN stories in your System Tray. It supports appindicator and falls back to Gtk StatusIcon otherwise.',
keywords='hacker news hn tray system tray icon hackertray',
2020-06-14 18:46:34 +00:00
url='https://captnemo.in/hackertray',
author='Abhay Rana (Nemo)',
author_email='me@captnemo.in',
license='MIT',
packages=find_packages(),
package_data={
'hackertray.data': ['hacker-tray.png']
},
install_requires=[
2020-06-14 17:08:14 +00:00
'requests>=2.23.0'
],
entry_points={
'console_scripts': ['hackertray = hackertray:main'],
},
zip_safe=False)