mirror of
https://github.com/openai/codex.git
synced 2026-09-06 15:29:32 +00:00
17 lines
518 B
Python
Executable File
17 lines
518 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""Build a canonical Codex package directory and optional archive."""
|
|
|
|
from pathlib import Path
|
|
import sys
|
|
|
|
|
|
# Some developer environments set PYTHONSAFEPATH=1, which prevents Python from
|
|
# adding the script directory to sys.path. Add it explicitly so the local helper
|
|
# package remains importable when this executable is launched from any cwd.
|
|
sys.path.insert(0, str(Path(__file__).resolve().parent))
|
|
|
|
from codex_package.cli import main
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|