mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
14 lines
304 B
Python
14 lines
304 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__ = '2.0.0-rc3'
|
|
__author__ = 'Manuel Ebert'
|
|
__license__ = 'MIT License'
|
|
__copyright__ = 'Copyright 2013 - 2015 Manuel Ebert'
|