summaryrefslogtreecommitdiff
path: root/alot/__init__.py
diff options
context:
space:
mode:
authorpazz <patricktotzke@gmail.com>2011-06-02 11:00:51 +0100
committerpazz <patricktotzke@gmail.com>2011-06-02 11:02:36 +0100
commit452e4daa186539f19901e431e665c17f3153ec24 (patch)
tree0c856e56ee9ea3c0f83a4615e16fbf062d8400a5 /alot/__init__.py
parent21274060a591fc4bf94b42a46359622219f787c5 (diff)
setup.py and friends
Diffstat (limited to 'alot/__init__.py')
-rw-r--r--alot/__init__.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/alot/__init__.py b/alot/__init__.py
index e69de29b..9bfcc779 100644
--- a/alot/__init__.py
+++ b/alot/__init__.py
@@ -0,0 +1,27 @@
+"""
+This file is part of alot.
+
+Alot is free software: you can redistribute it and/or modify it
+under the terms of the GNU General Public License as published by the
+Free Software Foundation, either version 3 of the License, or (at your
+option) any later version.
+
+Notmuch is distributed in the hope that it will be useful, but WITHOUT
+ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+for more details.
+
+You should have received a copy of the GNU General Public License
+along with notmuch. If not, see <http://www.gnu.org/licenses/>.
+
+Copyright (C) 2011 Patrick Totzke <patricktotzke@gmail.com>
+"""
+__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+."