summaryrefslogtreecommitdiff
path: root/cmd2/__init__.py
blob: 2de297d3e91865fe323bc519d8205075d42b173c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#
# -*- coding: utf-8 -*-
"""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