mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 08:38:32 +02:00
17 lines
316 B
Python
17 lines
316 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
|
|
"""
|
|
jrnl is a simple journal application for your command line.
|
|
"""
|
|
|
|
__title__ = 'jrnl'
|
|
__version__ = '1.7.3'
|
|
__author__ = 'Manuel Ebert'
|
|
__license__ = 'MIT License'
|
|
__copyright__ = 'Copyright 2013 Manuel Ebert'
|
|
|
|
from . import Journal
|
|
from . import cli
|
|
from .cli import run
|