summaryrefslogtreecommitdiff
path: root/cliapp/__init__.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2013-11-15 16:18:58 +0000
committerLars Wirzenius <liw@liw.fi>2013-11-15 16:18:58 +0000
commit5c6e5bfbef7f4c7cb589a064f23fcdb7511769f4 (patch)
treea62d61e9e5386c09f5f770240f90d7f0fc5bff8d /cliapp/__init__.py
parentb7a18c188fd10cb5e7a3c0f25c3d573a4a2b319f (diff)
downloadcliapp-5c6e5bfbef7f4c7cb589a064f23fcdb7511769f4.tar.gz
Add a module docstring
Diffstat (limited to 'cliapp/__init__.py')
-rw-r--r--cliapp/__init__.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/cliapp/__init__.py b/cliapp/__init__.py
index 3536626..3df77d4 100644
--- a/cliapp/__init__.py
+++ b/cliapp/__init__.py
@@ -15,6 +15,18 @@
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+'''Framework for Unix command line programs
+
+cliapp makes it easier to write typical Unix command line programs, by
+taking care of the common tasks they need to do, such as parsing the
+command line, reading configuration files, setting up logging,
+iterating over lines of input files, and so on.
+
+Homepage: http://liw.fi/cliapp/
+
+'''
+
+
__version__ = '1.20130808'