mirror of
https://github.com/mandiant/capa.git
synced 2026-06-12 19:11:32 -07:00
877d8da73c
Polish MAPA html split view
21 lines
363 B
Python
21 lines
363 B
Python
#!/usr/bin/env python
|
|
# /// script
|
|
# requires-python = ">=3.12"
|
|
# dependencies = [
|
|
# "idapro",
|
|
# "ida-domain",
|
|
# "rich",
|
|
# ]
|
|
# ///
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
ROOT = Path(__file__).resolve().parents[1]
|
|
if str(ROOT) not in sys.path:
|
|
sys.path.insert(0, str(ROOT))
|
|
|
|
from mapa.cli import main
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|