/
AntiManager
/
table_structure_analyzer
Обзор
Документация
Войти
/
AntiManager
/
table_structure_analyzer
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
setup.py
20 строк
545 B
Eugene
commit
26 дек 2025, 16:47
26 дек 2025, 16:47
0ef9264
Код
Авторство
О чём код?
from cx_Freeze import setup, Executable import sys base = None if sys.platform == "win32": base = "Win32GUI" build_exe_options = { "packages": ["tkinter", "pandas", "openpyxl", "yaml", "json"], "excludes": [], "include_files": [], } setup( name="Excel Structure Analyzer", version="1.0.0", description="Анализатор структуры Excel файлов с экспортом в JSON/YAML", options={"build_exe": build_exe_options}, executables=[Executable("main.py", base=base, icon="icon.ico")] )