14 lines
313 B
Python
14 lines
313 B
Python
"""Entry point wrapper for Medeia-Macina CLI."""
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
# Add the current directory to sys.path so we can import CLI
|
|
root_dir = Path(__file__).parent
|
|
if str(root_dir) not in sys.path:
|
|
sys.path.insert(0, str(root_dir))
|
|
|
|
from CLI import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|