1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
# Copyright (c) 2017-2026 Juancarlo AƱez (apalala@gmail.com)
# SPDX-License-Identifier: BSD-4-Clause
from __future__ import annotations
from ._config import __toolname__, __version__
from ._version import version, version_info
from .tool import ( # pylint: disable=W0622
compile,
gencode,
genmodel,
parse,
tatsu_main,
to_python_model,
to_python_sourcecode,
)
from .tool import tatsu_main as main
__all__ = [
'__toolname__',
'__version__',
"compile",
'gencode',
'genmodel',
'main', # some unit tests want this
'parse',
'tatsu_main',
'to_python_model',
'to_python_sourcecode',
'version',
'version_info',
]
|