File: __init__.py

package info (click to toggle)
python-click-log 0.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 164 kB
  • sloc: python: 264; makefile: 203; sh: 24
file content (18 lines) | stat: -rw-r--r-- 295 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- coding: utf-8 -*-
# flake8: noqa

import click

__version__ = '0.3.2'


if not hasattr(click, 'get_current_context'):
    raise RuntimeError('You need Click 5.0.')

from .core import (
    ClickHandler,
    ColorFormatter,
    basic_config,
)

from .options import simple_verbosity_option