From ceb78811ad01780c1fc667010aa74a2c62005e54 Mon Sep 17 00:00:00 2001 From: pazz Date: Sat, 4 Jun 2011 17:14:44 +0100 Subject: added urwid and notmuch requirements to setup.py --- alot/__init__.py | 5 ++--- setup.py | 4 +++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/alot/__init__.py b/alot/__init__.py index 9bfcc779..d6895eb4 100644 --- a/alot/__init__.py +++ b/alot/__init__.py @@ -16,12 +16,11 @@ along with notmuch. If not, see . Copyright (C) 2011 Patrick Totzke """ -__all__ = ['alot'] __productname__ = 'alot' __version__ = "0.0.1" __copyright__ = "Copyright (C) 2011 Patrick Totzke" __author__ = "Patrick Totzke" __author_email__= "patricktotzke@gmail.com" __description__ = "Terminal User Interface for notmuch mail (notmuchmail.org)" -__homepage__ = "https://github.com/pazz/notmuch-gui" -__license__ = "Licensed under the GNU GPL v3+." +__url__ = "https://github.com/pazz/notmuch-gui" +__license__ = "Licensed under the GNU GPL v3+." diff --git a/setup.py b/setup.py index 6306ee22..9712bd39 100755 --- a/setup.py +++ b/setup.py @@ -8,9 +8,11 @@ setup(name = "alot", description = alot.__description__, author = alot.__author__, author_email = alot.__author_email__, - url = alot.__homepage__, + url = alot.__url__, packages = ['alot'], scripts = ['bin/alot'], license = alot.__copyright__ + install_requires = ['notmuch>=0.4', + 'urwid'] ) -- cgit v1.2.3