File size: 230 Bytes
1d197a4
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
"""Compatibility entrypoint for the DeepIVUS CLI.

Implementation has been moved into the ``deepivus`` package to keep modules
small and easier to maintain.
"""

from deepivus.cli import cli


if __name__ == "__main__":
    cli()