jrnl/jrnl/__init__.py
2013-04-17 10:19:38 +02:00

16 lines
304 B
Python

#!/usr/bin/env python
# encoding: utf-8
"""
jrnl is a simple journal application for your command line.
"""
__title__ = 'jrnl'
__version__ = '1.0.2'
__author__ = 'Manuel Ebert'
__license__ = 'MIT License'
__copyright__ = 'Copyright 2013 Manuel Ebert'
from Journal import Journal
from jrnl import cli