-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython_to_exe.py
More file actions
23 lines (18 loc) · 1.39 KB
/
python_to_exe.py
File metadata and controls
23 lines (18 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
╔══════════════════════════════════════════════════════════════════════════════╗
║ Python to EXE Converter ║
║ تحويل تطبيقات بايثون إلى ملفات تنفيذية ║
║──────────────────────────────────────────────────────────────────────────────║
║ تطوير: عبدالكريم العبود | abo.saleh.g@gmail.com ║
║ © 2025 [Python to EXE] - All Rights Reserved ║
╚══════════════════════════════════════════════════════════════════════════════╝
نقطة الدخول - الكود الفعلي في حزمة py2exe_gui/
"""
import os
import sys
if __name__ == "__main__":
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from py2exe_gui.app import main
sys.exit(main())