mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
Cleanup and more logging
This commit is contained in:
parent
18d46417f1
commit
b8ef404453
3 changed files with 11 additions and 11 deletions
|
@ -12,7 +12,7 @@ import re
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
log = logging.getLogger("jrnl")
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class Journal(object):
|
class Journal(object):
|
||||||
|
|
|
@ -18,7 +18,7 @@ import argparse
|
||||||
import sys
|
import sys
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
log = logging.getLogger("jrnl")
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
def parse_args(args=None):
|
def parse_args(args=None):
|
||||||
|
|
18
setup.py
18
setup.py
|
@ -75,11 +75,11 @@ conditional_dependencies = {
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = "jrnl",
|
name="jrnl",
|
||||||
version = get_version(),
|
version=get_version(),
|
||||||
description = "A command line journal application that stores your journal in a plain text file",
|
description="A command line journal application that stores your journal in a plain text file",
|
||||||
packages = ['jrnl'],
|
packages=['jrnl'],
|
||||||
install_requires = [
|
install_requires=[
|
||||||
"pyxdg>=0.19",
|
"pyxdg>=0.19",
|
||||||
"parsedatetime>=1.2",
|
"parsedatetime>=1.2",
|
||||||
"pytz>=2013b",
|
"pytz>=2013b",
|
||||||
|
@ -112,9 +112,9 @@ setup(
|
||||||
'Topic :: Text Processing'
|
'Topic :: Text Processing'
|
||||||
],
|
],
|
||||||
# metadata for upload to PyPI
|
# metadata for upload to PyPI
|
||||||
author = "Manuel Ebert",
|
author="Manuel Ebert",
|
||||||
author_email = "manuel@1450.me",
|
author_email="manuel@1450.me",
|
||||||
license="LICENSE",
|
license="LICENSE",
|
||||||
keywords = "journal todo todo.txt jrnl".split(),
|
keywords="journal todo todo.txt jrnl".split(),
|
||||||
url = "http://www.jrnl.sh",
|
url="http://www.jrnl.sh",
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue