Adds a minimum version for requests library.

Fixes #16
This commit is contained in:
Abhay Rana 2013-12-07 21:59:51 +05:30
parent ea63201f14
commit 27fb60cc26
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ if sys.version_info < (2, 7):
requirements.append('argparse')
setup(name='hackertray',
version='1.9.2',
version='1.9.3',
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',
@ -20,7 +20,7 @@ setup(name='hackertray',
'hackertray.data':['hacker-tray.png']
},
install_requires=[
'requests',
'requests>=2.0',
],
entry_points={
'console_scripts': ['hackertray = hackertray:main'],