ontoenv-python 0.5.5

Command line tool to manage ontologies and their imports in a local environment
1
2
3
4
5
6
7
8
9
10
11
12
from __future__ import annotations

import sys

from ontoenv import run_cli as _run_cli


def main(argv: list[str] | None = None) -> int:
    code = _run_cli(argv if argv is not None else list(sys.argv))
    if code != 0:
        raise SystemExit(code)
    return 0