AST
This commit is contained in:
2
medeia_macina/__init__.py
Normal file
2
medeia_macina/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
"""Medeia-Macina package - Media management system."""
|
||||
__version__ = "0.1.0"
|
||||
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