summaryrefslogtreecommitdiff
path: root/bin/alot
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 /bin/alot
parent21274060a591fc4bf94b42a46359622219f787c5 (diff)
setup.py and friends
Diffstat (limited to 'bin/alot')
-rwxr-xr-xbin/alot20
1 files changed, 20 insertions, 0 deletions
diff --git a/bin/alot b/bin/alot
new file mode 100755
index 00000000..f3a61de9
--- /dev/null
+++ b/bin/alot
@@ -0,0 +1,20 @@
+#!/usr/bin/python
+"""
+This file is part of alot, a terminal UI to notmuch mail (notmuchmail.org).
+Copyright (C) 2011 Patrick Totzke <patricktotzke@gmail.com>
+
+This program 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.
+
+This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+"""
+from alot.init import main
+main()