summaryrefslogtreecommitdiff
path: root/cmd2/__init__.py
blob: 1072a3c70293c15f9b38d644808ecffb68609e26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#
# -*- coding: utf-8 -*-
# flake8: noqa F401
"""This simply imports certain things for backwards compatibility."""

from pkg_resources import get_distribution, DistributionNotFound
try:
    __version__ = get_distribution(__name__).version
except DistributionNotFound:
    # package is not installed
    pass

from .cmd2 import Cmd, Statement, EmptyStatement, categorize
from .cmd2 import with_argument_list, with_argparser, with_argparser_and_unknown_args, with_category
from .pyscript_bridge import CommandResult