- Add npm package structure (@canghe_ai/wechat-cli) with platform-specific optionalDependencies - Add JS wrapper (bin/wechat-cli.js) and postinstall script - Add PyInstaller entry point and build script - Update scanner_macos.py for PyInstaller compatibility (sys._MEIPASS) - Update README with npm install instructions (macOS arm64) - Fix repo URLs to freestylefly/wechat-cli
6 lines
135 B
Python
6 lines
135 B
Python
"""PyInstaller entry point — avoids relative import issues."""
|
|
from wechat_cli.main import cli
|
|
|
|
if __name__ == "__main__":
|
|
cli()
|