AST
This commit is contained in:
13
medeia_macina/cli_entry.py
Normal file
13
medeia_macina/cli_entry.py
Normal file
@@ -0,0 +1,13 @@
|
||||
"""Entry point wrapper for Medeia-Macina CLI."""
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
# Add the parent directory to sys.path so we can import CLI
|
||||
root_dir = Path(__file__).parent.parent
|
||||
if str(root_dir) not in sys.path:
|
||||
sys.path.insert(0, str(root_dir))
|
||||
|
||||
from CLI import main
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user