Skip to content

Commit

Permalink
feat: include welcome message for documentation purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-nelson-uiuc committed Dec 26, 2024
1 parent 220bc51 commit 46a3cd5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/tidy_tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
import sys

from loguru import logger
from tidy_tools.functions import merge
from tidy_tools.functions import reader

__all__ = ["reader", "merge"]

__version__ = "0.3.1"


LOG_FORMAT: str = "{time:HH:mm:ss} | <level>{level:<8}</level> | {message}"
logger.remove()
logger.add(sys.stderr, format=LOG_FORMAT)
logger.info(
f"Tidy Tools imported: {__version__}. See https://lucas-nelson-uiuc.github.io/tidy_tools/ for more details."
)

0 comments on commit 46a3cd5

Please sign in to comment.