mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
Adds version string and more
This commit is contained in:
parent
f8a8cdf24b
commit
4e39ab2821
1 changed files with 12 additions and 0 deletions
12
jrnl.py
12
jrnl.py
|
@ -1,5 +1,12 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
|
"""
|
||||||
|
jrnl
|
||||||
|
|
||||||
|
license: MIT, see LICENSE for more details.
|
||||||
|
"""
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import tempfile
|
import tempfile
|
||||||
import parsedatetime.parsedatetime as pdt
|
import parsedatetime.parsedatetime as pdt
|
||||||
|
@ -23,6 +30,11 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
CLINT = False
|
CLINT = False
|
||||||
|
|
||||||
|
__title__ = 'jrnl'
|
||||||
|
__version__ = '0.2.4'
|
||||||
|
__author__ = 'Manuel Ebert, Stephan Gabler'
|
||||||
|
__license__ = 'MIT'
|
||||||
|
|
||||||
default_config = {
|
default_config = {
|
||||||
'journal': os.path.expanduser("~/journal.txt"),
|
'journal': os.path.expanduser("~/journal.txt"),
|
||||||
'editor': "",
|
'editor': "",
|
||||||
|
|
Loading…
Add table
Reference in a new issue