From 67e958f4b6296cd9f18dbb24b09228f4184225f3 Mon Sep 17 00:00:00 2001 From: Manuel Ebert Date: Mon, 21 May 2012 11:49:16 +0200 Subject: [PATCH] Adds version string and more --- jrnl.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/jrnl.py b/jrnl.py index af8b0616..a0322e59 100755 --- a/jrnl.py +++ b/jrnl.py @@ -1,5 +1,12 @@ #!/usr/bin/env python # encoding: utf-8 + +""" + jrnl + + license: MIT, see LICENSE for more details. +""" + import os import tempfile import parsedatetime.parsedatetime as pdt @@ -23,6 +30,11 @@ try: except ImportError: CLINT = False +__title__ = 'jrnl' +__version__ = '0.2.4' +__author__ = 'Manuel Ebert, Stephan Gabler' +__license__ = 'MIT' + default_config = { 'journal': os.path.expanduser("~/journal.txt"), 'editor': "",