mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-11 00:58:31 +02:00
18 lines
363 B
Python
18 lines
363 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
|
|
"""
|
|
jrnl is a simple journal application for your command line.
|
|
"""
|
|
from __future__ import absolute_import
|
|
|
|
__title__ = 'jrnl'
|
|
__version__ = '1.7.13'
|
|
__author__ = 'Manuel Ebert'
|
|
__license__ = 'MIT License'
|
|
__copyright__ = 'Copyright 2013 - 2014 Manuel Ebert'
|
|
|
|
from . import Journal
|
|
from . import cli
|
|
from .cli import run
|